diff --git a/README.md b/README.md index 8ee0ba6c..624cef87 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ --- -## 🎁 从本项目你能学到什么 +## 📚 从本项目你能学到什么 - 学会主流的 Java Web 开发技术和框架 - 积累一个真实的 Web 项目开发经验 @@ -10,19 +10,21 @@ ## 💻 核心技术栈 - 后端: +后端: - Spring - Spring Boot 2.1.5 RELEASE - Spring MVC - ORM:MyBatis - 数据库:MySQL 5.7 +- 日志:SLF4J(日志接口) + Logback(日志实现) - 缓存:Redis - 消息队列:Kafka 2.13-2.7.0 - 搜索引擎:Elasticsearch 6.4.3 - 安全:Spring Security +- 邮件:Spring Mail +- 分布式定时任务:Spring Quartz - 监控:Spring Actuator -- 日志:SLF4J(日志接口) + Logback(日志实现) 前端: @@ -33,19 +35,23 @@ ## 🔨 开发环境 +- 操作系统:Windows 10 - 构建工具:Apache Maven - 集成开发工具:Intellij IDEA -- 数据库:MySQL 5.7、Redis +- 数据库:MySQL 5.7 - 应用服务器:Apache Tomcat +- 接口测试工具:Postman - 版本控制工具:Git -## 🔔 功能列表 +## 🎨 功能列表 -- [x] 注册(MySQL) - - 用户注册成功,将用户信息存入 MySQL,但此时该用户状态为未激活 - - 向用户发送激活邮件,用户点击链接则激活账号 +- [x] **注册**(MySQL) + + - 用户注册成功,将用户信息存入 MySQL,但此时该用户状态为未激活 + - 向用户发送激活邮件,用户点击链接则激活账号(Spring Mail) + +- [x] **登录 | 登出**(MySQL、Redis) -- [x] 登录 | 登出(MySQL、Redis) - 进入登录界面,动态生成验证码,并将验证码短暂存入 Redis(60 秒) - 用户登录成功(验证用户名、密码、验证码),生成登录凭证且设置状态为有效,并将登录凭证存入 Redis @@ -58,23 +64,34 @@ - 用户登出,将凭证状态设为无效,并更新 Redis 中该用户的登录凭证信息 -- [x] 账号设置(MySQL) +- [x] **账号设置**(MySQL) + - 修改头像 - 修改密码 -- [x] 检查登录状态(禁止未登录用户访问需要登录权限的界面,后续会使用 Spring Security 接管) - -- [x] 帖子模块(MySQL) +- [x] **帖子模块**(MySQL) + - 发布帖子(过滤敏感词),将其存入 MySQL - 分页显示所有的帖子 + - 支持按照 “发帖时间” 显示 + - 支持按照 “热度排行” 显示(Spring Quartz) - 查看帖子详情 + - 权限管理(Spring Security + Thymeleaf Security) + - 未登录用户无法发帖 + - “版主” 可以看到帖子的置顶和加精按钮并执行相应操作 + - “管理员” 可以看到帖子的删除按钮并执行相应操作 + - “普通用户” 无法看到帖子的置顶、加精、删除按钮,也无法执行相应操作 + +- [x] **评论模块**(MySQL) -- [x] 评论模块(MySQL) - 发布对帖子的评论(过滤敏感词),将其存入 MySQL - 分页显示评论 - 发布对评论的回复(过滤敏感词) + - 权限管理(Spring Security) + - 未登录用户无法使用评论功能 + +- [x] **私信模块**(MySQL) -- [x] 私信模块(MySQL) - 发送私信(过滤敏感词) - 私信列表 - 查询当前用户的会话列表 @@ -84,26 +101,34 @@ - 查询某个会话所包含的所有私信 - 访问私信详情时,将显示的私信设为已读状态 - 支持分页显示 + - 权限管理(Spring Security) + - 未登录用户无法使用私信功能 + +- [x] **统一处理异常**(404、500) -- [x] 统一处理异常(404、500) - 普通请求异常 - 异步请求异常 -- [x] 统一记录日志 +- [x] **统一记录日志** -- [x] 点赞模块(Redis) +- [x] **点赞模块**(Redis) + - 点赞 - 获赞 + - 权限管理(Spring Security) + - 未登录用户无法使用点赞相关功能 -- [x] 关注模块(Redis) +- [x] **关注模块**(Redis) - 关注功能 - 取消关注功能 - 统计用户的关注数和粉丝数 - 关注列表(查询某个用户关注的人),支持分页 - 粉丝列表(查询某个用户的粉丝),支持分页 + - 权限管理(Spring Security) + - 未登录用户无法使用关注相关功能 -- [x] 系统通知模块(Kafka) +- [x] **系统通知模块**(Kafka) - 通知列表 - 显示评论、点赞、关注三种类型的通知 @@ -113,10 +138,11 @@ - 未读数量 - 分别显示每种类型的系统通知的未读数量 - 显示所有系统通知的未读数量 + - 导航栏显示所有消息的未读数量(未读私信 + 未读系统通知) + - 权限管理(Spring Security) + - 未登录用户无法使用系统通知功能 - - 导航栏显示所有消息的未读数量(未读私信 + 未读系统通知) - -- [x] 搜索模块(Elasticsearch + Kafka) +- [x] **搜索模块**(Elasticsearch + Kafka) - 发布事件 - 发布帖子时,通过消息队列将帖子异步地提交到 Elasticsearch 服务器 @@ -126,22 +152,31 @@ - 从 Elasticsearch 服务器删除帖子(当帖子从数据库中被删除时) - 显示搜索结果 -- [ ] 权限控制 +- [x] **网站数据统计**(管理员专属) -- [ ] 管理员模块 - - 置顶帖子 - - 加精帖子 - - 删除帖子 - -- [ ] 网站数据统计 - -- [ ] 热帖排行 + - 独立访客 UV + - 存入 Redis 的 HyperLogLog + - 支持单日查询和区间日期查询 + - 日活跃用户 DAU + - 存入 Redis 的 Bitmap + - 支持单日查询和区间日期查询 + - 权限管理(Spring Security) + - 只有管理员可以查看网站数据统计 - [ ] 文件上传 - [ ] 优化网站性能 -## 🎨 界面展示 +## 🔐 待实现及优化 + +- [ ] 修改用户名 +- [ ] 查询我的帖子 +- [ ] 查询我的评论 +- [ ] 查询我的点赞 +- [ ] 管理员对帖子的二次点击取消置顶功能 +- [ ] 管理员对已删除帖子的恢复功能 + +## 🎀 界面展示 ## 📜 数据库设计 @@ -205,7 +240,7 @@ CREATE TABLE `comment` ( ) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8; ``` -登录凭证 `login_ticket`: +登录凭证 `login_ticket`(废弃,使用 Redis 存储): ```sql DROP TABLE IF EXISTS `login_ticket`; diff --git a/docs/220-优化登录模块.md b/docs/220-优化登录模块.md index 3534e9c3..6905d5ff 100644 --- a/docs/220-优化登录模块.md +++ b/docs/220-优化登录模块.md @@ -2,7 +2,7 @@ --- -## 使用 Redis 存储验证码 +## 使用 Redis 短暂存储验证码 - 验证码需要频繁刷新,对性能要求较高 - 验证码不需永久保存(设置在 Cookie 和 Redis 中的保留时间为 60 s) @@ -107,7 +107,7 @@ public class RedisKeyUtil { } ``` -LoginTicket 这张表以及相关操作可以废弃了,不过我们最好不要直接就删除了。在 `LoginMapper` 类上面加上 `@Deprecated` 注解表示不推荐使用就好了。 +**LoginTicket 这张表以及相关操作可以废弃了**,不过我们最好不要直接就删除了。在 `LoginMapper` 类上面加上 `@Deprecated` 注解表示不推荐使用就好了。 修改 UserService 中生成/修改/查询登录凭证这三个方法 diff --git a/docs/240-显示系统通知.md b/docs/240-显示系统通知.md index 8d1a415a..913ba1d1 100644 --- a/docs/240-显示系统通知.md +++ b/docs/240-显示系统通知.md @@ -84,9 +84,10 @@ public String getNoticeList(Model model) { // 查询评论类通知 Message message = messageService.findLatestNotice(user.getId(), TOPIC_COMMNET); - // 封装通知需要用到的数据 - Map messageVO = new HashMap<>(); + // 封装通知需要的各种数据 if (message != null) { + Map messageVO = new HashMap<>(); + messageVO.put("message", message); String content = HtmlUtils.htmlUnescape(message.getContent()); @@ -102,8 +103,9 @@ public String getNoticeList(Model model) { int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_COMMNET); messageVO.put("unread", unread); + + model.addAttribute("commentNotice", messageVO); } - model.addAttribute("commentNotice", messageVO); // 查询点赞类通知 ........... diff --git a/docs/260-权限控制.md b/docs/260-权限控制.md new file mode 100644 index 00000000..c5daf92f --- /dev/null +++ b/docs/260-权限控制.md @@ -0,0 +1,166 @@ +# Spring Security 权限控制 + +--- + +![](https://gitee.com/veal98/images/raw/master/img/20210130143717.png) + +导入 依赖: + +```xml + + + org.springframework.boot + spring-boot-starter-security + +``` + +## 授权配置 + +![](https://gitee.com/veal98/images/raw/master/img/20210130152216.png) + +管理员能够访问的特殊路径后续再配 + +```java +@Configuration +public class SecurityConfig extends WebSecurityConfigurerAdapter implements CommunityConstant { + + /** + * 静态资源 + * @param web + * @throws Exception + */ + @Override + public void configure(WebSecurity web) throws Exception { + web.ignoring().antMatchers("/resources/**"); + } + + // 认证环节我们使用自己的代码 LoginController,绕过 Spring Security 的 + + /** + * 授权 + * @param http + * @throws Exception + */ + @Override + protected void configure(HttpSecurity http) throws Exception { + http.authorizeRequests() + .antMatchers( + "/user/setting", + "/user/upload", + "/discuss/add", + "/comment/add", + "/letter/**", + "/notice/**", + "/like", + "/follow", + "/unfollow" + ) + .hasAnyAuthority( + AUTHORITY_USER, + AUTHORITY_ADMIN, + AUTHORITY_MODERATOR + ) + .anyRequest().permitAll(); + + // 权限不够时的处理 + http.exceptionHandling() + // 1. 未登录时的处理 + .authenticationEntryPoint(new AuthenticationEntryPoint() { + @Override + public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException e) throws IOException, ServletException { + String xRequestedWith = request.getHeader("x-requested-with"); + if ("XMLHttpRequest".equals(xRequestedWith)) { + // 异步请求 + response.setContentType("application/plain;charset=utf-8"); + PrintWriter writer = response.getWriter(); + writer.write(CommunityUtil.getJSONString(403, "你还没有登录")); + } + else { + // 普通请求 + response.sendRedirect(request.getContextPath() + "/login"); + } + } + }) + // 2. 权限不够时的处理 + .accessDeniedHandler(new AccessDeniedHandler() { + @Override + public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException e) throws IOException, ServletException { + String xRequestedWith = request.getHeader("x-requested-with"); + if ("XMLHttpRequest".equals(xRequestedWith)) { + // 异步请求 + response.setContentType("application/plain;charset=utf-8"); + PrintWriter writer = response.getWriter(); + writer.write(CommunityUtil.getJSONString(403, "你没有访问该功能的权限")); + } + else { + // 普通请求 + response.sendRedirect(request.getContextPath() + "/denied"); + } + } + }); + + // Security 底层会默认拦截 /logout 请求,进行退出处理 + // 此处赋予它一个根本不存在的退出路径,使得程序能够执行到我们自己编写的退出代码 + http.logout().logoutUrl("/securitylogout"); + } +} +``` + +Security 底层会默认拦截 /logout 请求,进行退出处理。此处赋予它一个根本不存在的退出路径 /securitylogout(善意的谎言),使得程序能够执行到我们自己编写的退出代码 + +## 认证方案 + +认证环节我们之前已经写好了,就不用 Security 的了。即绕过 Spring Security 的认证流程,使用我们自己编写的代码。不在下面 Security 提供的认证方法中写: + +```java +@Override +protected void configure(AuthenticationManagerBuilder auth) throws Exception { + super.configure(auth); +} +``` + +**既然我们需要自己做认证,也就是将认证的结果(用户、密码、权限)存入 SecurityContext**,便于 Security 的授权: + +我们之前利用拦截器 LoginTicketInterceptor 在所有 Controller 执行之前获取了用户信息,所以在此处做如下修改: + +![](https://gitee.com/veal98/images/raw/master/img/20210130152730.png) + +其中,需要在 UserService 中添加一个获取用户权限的方法: + +```java +/** + * 获取某个用户的权限 + * @param userId + * @return + */ +public Collection getAuthorities(int userId) { + User user = this.findUserById(userId); + List list = new ArrayList<>(); + list.add(new GrantedAuthority() { + @Override + public String getAuthority() { + switch (user.getType()) { + case 1: + return AUTHORITY_ADMIN; + case 2: + return AUTHORITY_MODERATOR; + default: + return AUTHORITY_USER; + } + } + }); + return list; +} +``` + +别忘了请求结束后清除相关内容: + +![](https://gitee.com/veal98/images/raw/master/img/20210130152843.png) + +![](https://gitee.com/veal98/images/raw/master/img/20210130152910.png) + +## CSRF 配置 + +禁用 csrf 的 token 检查 + +![](https://gitee.com/veal98/images/raw/master/img/20210130201754.png) \ No newline at end of file diff --git a/docs/270-置顶加精删除.md b/docs/270-置顶加精删除.md new file mode 100644 index 00000000..d6917d08 --- /dev/null +++ b/docs/270-置顶加精删除.md @@ -0,0 +1,177 @@ +# 置顶、加精、删除 + +--- + +![](https://gitee.com/veal98/images/raw/master/img/20210130202241.png) + +## 功能实现 + +service 和 DAO 就不列出来了,比较简单 + +### Controller + +置顶、加精帖子同时也需要触发发帖事件,修改 Elasticsearch 服务器的数据 + +`DiscusspostController`: + +```java +/** + * 置顶帖子 + * @param id + * @return + */ +@PostMapping("/top") +@ResponseBody +public String setTop(int id) { + discussPostSerivce.updateType(id, 1); + + // 触发发帖事件,通过消息队列将其存入 Elasticsearch 服务器 + Event event = new Event() + .setTopic(TOPIC_PUBLISH) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(ENTITY_TYPE_POST) + .setEntityId(id); + eventProducer.fireEvent(event); + + return CommunityUtil.getJSONString(0); +} +``` + +删除帖子时将数据库中的状态修改为拉黑 2(这里我们没有写删除帖子的方法,而是将其状态设置为拉黑,重构的时候考虑一下将这个改为直接删除),并触发删帖事件, 删除 Elasticsearch 服务器中的数据 + +EventConsumer: + +```java +/** + * 消费删帖事件 + */ +@KafkaListener(topics = {TOPIC_DELETE}) +public void handleDeleteMessage(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 ; + } + + elasticsearchService.deleteDiscusspost(event.getEntityId()); +} +``` + +DiscusspostController: + +```java +/** + * 删除帖子 + * @param id + * @return + */ +@PostMapping("/delete") +@ResponseBody +public String setDelete(int id) { + discussPostSerivce.updateStatus(id, 2); + + // 触发删帖事件,通过消息队列更新 Elasticsearch 服务器 + Event event = new Event() + .setTopic(TOPIC_DELETE) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(ENTITY_TYPE_POST) + .setEntityId(id); + eventProducer.fireEvent(event); + + return CommunityUtil.getJSONString(0); +} +``` + +### 前端 + +input 隐藏框的作用是方便给后端那几个方法传递参数值 post.id + +button 的 id 是方便在 js 中进行调用 + +```html + + + + +``` + +对应的 discuss.js:(我发现只是要异步请求就需要在 js 文件中写逻辑,非异步请求不需要,不知道是否正确,后续重构的时候再看) + +```js +$(function(){ + $("#topBtn").click(setTop); + $("#wonderfulBtn").click(setWonderful); + $("#deleteBtn").click(setDelete); +}); + +// 置顶 +function setTop() { + $.post( + CONTEXT_PATH + "/discuss/top", // 方法路径 + {"id":$("#postId").val()}, // 给方法传递参数 + function (data) { // 方法返回的结果 + data = $.parseJSON(data); // 方法返回的结果是 json 类型,我们将其转为 object + if (data.code == 0) { + // 置顶成功后,将置顶按钮设置为不可用 + $("#topBtn").attr("disabled", "disable") + } + else { + alert(data.msg); + } + } + ) +} + +// 加精(和置顶差不多) + +// 删除 +function setDelete() { + $.post( + CONTEXT_PATH + "/discuss/delete", + {"id":$("#postId").val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 删除成功后,跳转到首页 + location.href = CONTEXT_PATH + "/index"; + } + else { + alert(data.msg); + } + } + ) +} +``` + +## 权限管理 + +在 SecurityConfig 中加上这么一段即可: + +![](https://gitee.com/veal98/images/raw/master/img/20210130215025.png) + +## 按钮显示 + +不同的权限显示不同的按钮这个功能,需要通过 Thymeleaf SpringSecurity5 实现,导入依赖: + +```xml + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + +``` + +在文件头添加引用 `xmlns:sec="http://www.thymeleaf.org/extra/spring-security"`: + +```html + +``` + +![](https://gitee.com/veal98/images/raw/master/img/20210130215201.png) \ No newline at end of file diff --git a/docs/280-网站数据统计.md b/docs/280-网站数据统计.md new file mode 100644 index 00000000..62fe008d --- /dev/null +++ b/docs/280-网站数据统计.md @@ -0,0 +1,271 @@ +# 网站数据统计 + +--- + +使用 Redis 高级数据类型: + + + +![](https://gitee.com/veal98/images/raw/master/img/20210131112124.png) + +DAU 只统计登录用户,UV 兼并访客和登录用户 + +DAU:将用户 ID 作为 bitmap 的 key 存入,若该用户当天访问过,则置 value 为 1。一天用一个 bitmap + +计算区间内的 DAU 的时候, 使用 or 运算,就是说这么多天只要这个用户登陆过一次,就算活跃用户 + +RedisKeyUtil: + +```java +/** + * 单日 UV + * @param date + * @return + */ +public static String getUVKey(String date) { + return PREFIX_UV + SPLIT + date; +} + +/** + * 区间 UV + * @param startDate + * @param endDate + * @return + */ +public static String getUVKey(String startDate, String endDate) { + return PREFIX_UV + SPLIT + startDate + SPLIT + endDate; +} + +/** + * 单日 DAU + * @param date + * @return + */ +public static String getDAUKey(String date) { + return PREFIX_DAU + SPLIT + date; +} + +/** + * 区间 DAU + * @param startDate + * @param endDate + * @return + */ +public static String getDAUKey(String startDate, String endDate) { + return PREFIX_DAU + SPLIT + startDate + SPLIT + endDate; +} +``` + +## Service + +```java +/** + * 网站数据统计(UV / DAU) + */ +@Service +public class DataService { + + @Autowired + private RedisTemplate redisTemplate; + + private SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); + + /** + * 将指定的 IP 计入当天的 UV + * @param ip + */ + public void recordUV(String ip) { + String redisKey = RedisKeyUtil.getUVKey(df.format(new Date())); + redisTemplate.opsForHyperLogLog().add(redisKey, ip); + } + + /** + * 统计指定日期范围内的 UV + * @param start + * @param end + * @return + */ + public long calculateUV(Date start, Date end) { + if (start == null || end == null) { + throw new IllegalArgumentException("参数不能为空"); + } + + // 整理该日期范围内的 key + List keyList = new ArrayList<>(); + Calendar calendar = Calendar.getInstance(); + calendar.setTime(start); + while (!calendar.getTime().after(end)) { + String key = RedisKeyUtil.getUVKey(df.format(calendar.getTime())); + keyList.add(key); + calendar.add(Calendar.DATE, 1); // 加1天 + } + + // 合并这些天的 UV + String redisKey = RedisKeyUtil.getUVKey(df.format(start), df.format(end)); + redisTemplate.opsForHyperLogLog().union(redisKey, keyList.toArray()); + + // 返回统计结果 + return redisTemplate.opsForHyperLogLog().size(redisKey); + } + + /** + * 将指定的 IP 计入当天的 DAU + * @param userId + */ + public void recordDAU(int userId) { + String redisKey = RedisKeyUtil.getDAUKey(df.format(new Date())); + redisTemplate.opsForValue().setBit(redisKey, userId, true); + } + + /** + * 统计指定日期范围内的 DAU + * @param start + * @param end + * @return + */ + public long calculateDAU(Date start, Date end) { + if (start == null || end == null) { + throw new IllegalArgumentException("参数不能为空"); + } + + // 整理该日期范围内的 key + List keyList = new ArrayList<>(); + Calendar calendar = Calendar.getInstance(); + calendar.setTime(start); + while (!calendar.getTime().after(end)) { + String key = RedisKeyUtil.getDAUKey(df.format(calendar.getTime())); + keyList.add(key.getBytes()); + calendar.add(Calendar.DATE, 1); // 加1天 + } + + // 进行 or 运算 + return (long) redisTemplate.execute(new RedisCallback() { + @Override + public Object doInRedis(RedisConnection redisConnection) throws DataAccessException { + String redisKey = RedisKeyUtil.getDAUKey(df.format(start), df.format(end)); + redisConnection.bitOp(RedisStringCommands.BitOperation.OR, + redisKey.getBytes(), keyList.toArray(new byte[0][0])); + return redisConnection.bitCount(redisKey.getBytes()); + } + }); + } +} +``` + + + +## 拦截器 + +在所有请求执行之前查询 uv 和 dau + +```java +@Component +public class DataInterceptor implements HandlerInterceptor { + + @Autowired + private DataService dataService; + + @Autowired + private HostHolder hostHolder; + + @Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { + // 统计 UV + String ip = request.getRemoteHost(); + dataService.recordUV(ip); + + // 统计 DAU + User user = hostHolder.getUser(); + if (user != null) { + dataService.recordDAU(user.getId()); + } + + return true; + } +} +``` + +别忘记在配置中添加此拦截器 + +![](https://gitee.com/veal98/images/raw/master/img/20210131130906.png) + +## Controller + +```java +/** + * 网站数据 + */ +@Controller +public class DataController { + + @Autowired + private DataService dataService; + + /** + * 进入统计界面 + * @return + */ + @RequestMapping(value = "/data", method = {RequestMethod.GET, RequestMethod.POST}) + public String getDataPage() { + return "/site/admin/data"; + } + + /** + * 统计网站 uv + * @param start + * @param end + * @return + */ + @PostMapping("/data/uv") + public String getUV(@DateTimeFormat(pattern = "yyyy-MM-dd") Date start, + @DateTimeFormat(pattern = "yyyy-MM-dd") Date end, + Model model) { + long uv = dataService.calculateUV(start, end); + model.addAttribute("uvResult", uv); + model.addAttribute("uvStartDate", start); + model.addAttribute("uvEndDate", end); + return "forward:/data"; + } + + /** + * 统计网站 DAU + * @param start + * @param end + * @return + */ + @PostMapping("/data/dau") + public String getDAU(@DateTimeFormat(pattern = "yyyy-MM-dd") Date start, + @DateTimeFormat(pattern = "yyyy-MM-dd") Date end, + Model model) { + long dau = dataService.calculateDAU(start, end); + model.addAttribute("dauResult", dau); + model.addAttribute("dauStartDate", start); + model.addAttribute("dauEndDate", end); + return "forward:/data"; + } + +} +``` + +![](https://gitee.com/veal98/images/raw/master/img/20210131121136.png) + + + +别忘记给管理员赋予权限: + +![](https://gitee.com/veal98/images/raw/master/img/20210131130739.png) + +## 前端 + +data.html + +```html +
+ + + +
+统计结果 +``` \ No newline at end of file diff --git a/docs/290-热帖排行.md b/docs/290-热帖排行.md new file mode 100644 index 00000000..348558ef --- /dev/null +++ b/docs/290-热帖排行.md @@ -0,0 +1,234 @@ +# 热帖排行 + +--- + +每隔一段时间就计算帖子的分数,需要使用分布式定时任务: + +![](https://gitee.com/veal98/images/raw/master/img/20210131152028.png) + +![](https://gitee.com/veal98/images/raw/master/img/20210131152852.png) + +Spring Quartz 导包 + +```xml + + + org.springframework.boot + spring-boot-starter-quartz + +``` + +由于 Spring Quartz 依赖于数据库,所以我们需要提前在数据库中创建 Quartz 需要的表 + +运行 init_quartz.sql 文件 + + + +分数计算设计: + +![](https://gitee.com/veal98/images/raw/master/img/20210131161518.png) + + + +## 分数计算 + +每次发生点赞(给帖子点赞)、评论(给帖子评论)、加精的时候,就将这些帖子存入缓存 Redis 中,然后通过分布式的定时任务,每隔一段时间就从缓存中取出这些帖子进行计算分数。 + +RedisKeyUtil + +```java +/** + * 帖子分数 + * @return + */ +public static String getPostScoreKey() { + return PREFIX_POST + SPLIT + "score"; +} +``` + +### Controller + +以点赞操作为例: + + + +### Job + +```java +/** + * 帖子分数计算刷新 + */ +public class PostScoreRefreshJob implements Job, CommunityConstant { + + private static final Logger logger = LoggerFactory.getLogger(PostScoreRefreshJob.class); + + @Autowired + private RedisTemplate redisTemplate; + + @Autowired + private DiscussPostSerivce discussPostSerivce; + + @Autowired + private LikeService likeService; + + @Autowired + private ElasticsearchService elasticsearchService; + + // Epoch 纪元 + private static final Date epoch; + + static { + try { + epoch = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2014-01-01 00:00:00"); + } catch (ParseException e) { + throw new RuntimeException("初始化 Epoch 纪元失败", e); + } + } + + @Override + public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException { + String redisKey = RedisKeyUtil.getPostScoreKey(); + BoundSetOperations operations = redisTemplate.boundSetOps(redisKey); + + if (operations.size() == 0) { + logger.info("[任务取消] 没有需要刷新的帖子"); + return ; + } + + logger.info("[任务开始] 正在刷新帖子分数: " + operations.size()); + while (operations.size() > 0) { + this.refresh((Integer) operations.pop()); + } + logger.info("[任务结束] 帖子分数刷新完毕"); + } + + /** + * 刷新帖子分数 + * @param postId + */ + private void refresh(int postId) { + DiscussPost post = discussPostSerivce.findDiscussPostById(postId); + + if (post == null) { + logger.error("该帖子不存在: id = " + postId); + return ; + } + + // 是否加精 + boolean wonderful = post.getStatus() == 1; + // 评论数量 + int commentCount = post.getCommentCount(); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_POST, postId); + + // 计算权重 + double w = (wonderful ? 75 : 0) + commentCount * 10 + likeCount * 2; + // 分数 = 权重 + 发帖距离天数 + double score = Math.log10(Math.max(w, 1)) + + (post.getCreateTime().getTime() - epoch.getTime()) / (1000 * 3600 * 24); + // 更新帖子分数 + discussPostSerivce.updateScore(postId, score); + // 同步更新搜索数据 + post.setScore(score); + elasticsearchService.saveDiscusspost(post); + + } +} +``` + +注意同步更新一下搜索 Elasticsearch 服务器的数据 + +### Quarz Config + +```java +/** + * Spring Quartz 配置类,用于将数据存入数据库,以后直接从数据库中调用数据 + */ +@Configuration +public class QuartzConfig { + + /** + * 刷新帖子分数任务 + * @return + */ + @Bean + public JobDetailFactoryBean postScoreRefreshJobDetail() { + JobDetailFactoryBean factoryBean = new JobDetailFactoryBean(); + factoryBean.setJobClass(PostScoreRefreshJob.class); + factoryBean.setName("postScoreRefreshJob"); + factoryBean.setGroup("communityJobGroup"); + factoryBean.setDurability(true); + factoryBean.setRequestsRecovery(true); + return factoryBean; + } + + /** + * 刷新帖子分数触发器 + * @return + */ + @Bean + public SimpleTriggerFactoryBean postScoreRefreshTrigger(JobDetail postScoreRefreshJobDetail) { + SimpleTriggerFactoryBean factoryBean = new SimpleTriggerFactoryBean(); + factoryBean.setJobDetail(postScoreRefreshJobDetail); + factoryBean.setName("postScoreRefreshTrigger"); + factoryBean.setGroup("communityTriggerGroup"); + factoryBean.setRepeatInterval(1000 * 60 * 5); // 5分钟刷新一次 + factoryBean.setJobDataMap(new JobDataMap()); + return factoryBean; + } +} +``` + +## 根据分数进行排行显示 + +重构下分页查询帖子的方法: + +```java +/** + * 分页查询讨论帖信息 + * + * @param userId 当传入的 userId = 0 时查找所有用户的帖子 + * 当传入的 userId != 0 时,查找该指定用户的帖子 + * @param offset 每页的起始索引 + * @param limit 每页显示多少条数据 + * @param orderMode 排行模式(若传入 1, 则按照热度来排序) + * @return + */ +List selectDiscussPosts(int userId, int offset, int limit, int orderMode); +``` + +添加一个 orderMode,若传入 1, 则按照热度来排序,传入 0(默认)则按照最新来排序。当然,置顶的帖子不受影响 + +对应的 service 也需要做相应修改 + +```java +/** + * 分页查询讨论帖信息 + * + * @param userId 当传入的 userId = 0 时查找所有用户的帖子 + * 当传入的 userId != 0 时,查找该指定用户的帖子 + * @param offset 每页的起始索引 + * @param limit 每页显示多少条数据 + * @param orderMode 排行模式(若传入 1, 则按照热度来排序) + * @return + */ +public List findDiscussPosts (int userId, int offset, int limit, int orderMode) { + return discussPostMapper.selectDiscussPosts(userId, offset, limit, orderMode); +} +``` + +在修改对应的 HomeController + +![](https://gitee.com/veal98/images/raw/master/img/20210131175558.png) + +Get 方法:前端是通过 ? 来传递参数的:比如说`/index?1`,前端 `th:href="@{/index(orderMode=0)}"` + +而通过请求体来传递参数使用的是 Post 请求 :比如说`/add/postid`,前端 `th:href="@{|/index/${post.id}|}"` + +修改一下 index.html + +```html + 最新 + + 最热 +``` \ No newline at end of file diff --git a/log/community/error/log-error-2021-01-29.0.log b/log/community/error/log-error-2021-01-29.0.log new file mode 100644 index 00000000..fc2ed315 --- /dev/null +++ b/log/community/error/log-error-2021-01-29.0.log @@ -0,0 +1,1058 @@ +2021-01-29 10:48:40,314 ERROR [restartedMain] o.s.b.SpringApplication [SpringApplication.java:858] Application run failed +org.springframework.context.ApplicationContextException: Failed to start bean 'org.springframework.kafka.config.internalKafkaListenerEndpointRegistry'; nested exception is org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata + at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:185) + at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:53) + at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:360) + at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:158) + at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:122) + at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:893) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.finishRefresh(ServletWebServerApplicationContext.java:163) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:552) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:142) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:775) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:316) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) + at com.greate.community.CommunityApplication.main(CommunityApplication.java:10) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata +2021-01-29 10:52:05,430 ERROR [http-nio-8080-exec-10] 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-29 10:52:05,430 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1111) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1084) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:866) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:341) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:132) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:95) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:82) +2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:211) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultValueOperations.set(DefaultValueOperations.java:256) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LoginController.getKaptcha(LoginController.java:138) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-29 10:52:05,433 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-29 10:52:05,433 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-29 10:52:05,433 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-29 10:52:05,433 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:104) +2021-01-29 10:52:05,433 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:892) +2021-01-29 10:52:05,433 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:797) +2021-01-29 10:52:05,434 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-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) +2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) +2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-29 10:52:05,435 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 10:52:05,436 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-29 10:52:05,436 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-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 10:52:05,436 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-29 10:52:05,436 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-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 10:52:05,437 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-29 10:52:05,437 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-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 10:52:05,437 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-29 10:52:05,437 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-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-29 10:52:05,438 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-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-29 10:52:05,438 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-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-29 10:52:05,439 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:1747) +2021-01-29 10:52:05,439 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-29 10:52:05,439 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-29 10:52:05,439 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-29 10:52:05,439 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-29 10:52:05,439 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-29 10:53:06,928 ERROR [http-nio-8080-exec-6] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-6] 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + 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) + ... 52 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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) + ... 54 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + ... 75 common frames omitted +2021-01-29 10:53:06,930 ERROR [http-nio-8080-exec-6] 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.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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-29 10:57:01,445 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + 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) + ... 52 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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) + ... 54 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + ... 75 common frames omitted +2021-01-29 10:57:01,446 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/notice.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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-29 10:57:31,807 ERROR [http-nio-8080-exec-8] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-8] 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + 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) + ... 52 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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) + ... 54 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + ... 75 common frames omitted +2021-01-29 10:57:31,808 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/notice.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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-29 10:59:17,664 ERROR [http-nio-8080-exec-7] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-7] 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + 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) + ... 52 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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) + ... 54 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + ... 75 common frames omitted +2021-01-29 10:59:17,664 ERROR [http-nio-8080-exec-7] 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.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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-29 11:00:21,588 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + 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) + ... 52 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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) + ... 54 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + ... 75 common frames omitted +2021-01-29 11:00:21,589 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/notice.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) + at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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-29 11:04:09,387 ERROR [http-nio-8080-exec-3] 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-29 11:04:09,387 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:132) +2021-01-29 11:04:09,387 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:126) +2021-01-29 11:04:09,387 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:167) +2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:134) +2021-01-29 11:04:09,388 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:104) +2021-01-29 11:04:09,388 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:892) +2021-01-29 11:04:09,388 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:797) +2021-01-29 11:04:09,388 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-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) +2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) +2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-29 11:04:09,389 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-29 11:04:09,389 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 11:04:09,390 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-29 11:04:09,390 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-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 11:04:09,390 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-29 11:04:09,390 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-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-29 11:04:09,391 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-29 11:04:09,391 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-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-29 11:04:09,391 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-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-29 11:04:09,391 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-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-29 11:04:09,392 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-29 11:04:09,392 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-29 11:04:09,392 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:1747) +2021-01-29 11:04:09,392 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-29 11:04:09,392 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-29 11:04:09,392 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-29 11:04:09,392 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-29 11:04:09,392 ERROR [http-nio-8080-exec-3] 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-30.0.log b/log/community/error/log-error-2021-01-30.0.log new file mode 100644 index 00000000..1d28a155 --- /dev/null +++ b/log/community/error/log-error-2021-01-30.0.log @@ -0,0 +1,491 @@ +2021-01-30 20:17:55,101 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{urF3XrU-TTKMat5FxVJzsA}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 20:48:10,576 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{_7x5-pyRRjeLhgKPXZyO5g}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 20:48:49,671 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 2, CreateTime = 1612010929618, serialized key size = -1, serialized value size = 89, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":287,"entityType":1,"entityUserId":0,"topic":"publish","userId":153}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{_7x5-pyRRjeLhgKPXZyO5g}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{_7x5-pyRRjeLhgKPXZyO5g}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{_7x5-pyRRjeLhgKPXZyO5g}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy113.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy113.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$3ff8cf63.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-30 20:53:00,132 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:00:22,380 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 3, CreateTime = 1612011622333, serialized key size = -1, serialized value size = 89, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":287,"entityType":1,"entityUserId":0,"topic":"publish","userId":153}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy113.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy113.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$5ef3e7ba.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-30 21:00:29,457 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 4, CreateTime = 1612011629453, serialized key size = -1, serialized value size = 89, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":287,"entityType":1,"entityUserId":0,"topic":"publish","userId":153}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{lvLge7atRL6vM_excftsdQ}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy113.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy113.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$5ef3e7ba.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-30 21:03:09,130 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{i6eA_yD2Q0ip_jyw1WDgYg}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:05:21,812 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{u_naxn3VTkS9pOfVPqhWqw}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:06:08,199 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{gtASUSTkS3aMiK72cSdx_Q}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:06:22,239 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = delete, partition = 0, offset = 0, CreateTime = 1612011982207, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":287,"entityType":1,"entityUserId":0,"topic":"delete","userId":153}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handleDeleteMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{gtASUSTkS3aMiK72cSdx_Q}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{gtASUSTkS3aMiK72cSdx_Q}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{gtASUSTkS3aMiK72cSdx_Q}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.delete(ElasticsearchTemplate.java:681) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.deleteById(AbstractElasticsearchRepository.java:233) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.deleteById(AbstractElasticsearchRepository.java:60) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.deleteById(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.deleteById(Unknown Source) + at com.greate.community.service.ElasticsearchService.deleteDiscusspost(ElasticsearchService.java:54) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$f8675f06.deleteDiscusspost() + at com.greate.community.event.EventConsumer.handleDeleteMessage(EventConsumer.java:113) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-30 21:10:29,830 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:12:32,090 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 5, CreateTime = 1612012352050, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":286,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$e69a288d.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-30 21:12:32,987 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 6, CreateTime = 1612012352982, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":286,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{Abl5laOQR_Oo0VomEKiFGQ}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$e69a288d.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-30 21:24:08,184 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{T4a8QSEZSO-8V3uUzteXHA}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:31:44,905 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{3q2TbAYUSBqRzhArIBtg2Q}{127.0.0.1}{127.0.0.1:9300}] +2021-01-30 21:32:32,569 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{viuNkqB6QWuahdOnDFbP5A}{127.0.0.1}{127.0.0.1:9300}] diff --git a/log/community/info/log-info-2021-01-29.0.log b/log/community/info/log-info-2021-01-29.0.log new file mode 100644 index 00000000..fe0a8fd2 --- /dev/null +++ b/log/community/info/log-info-2021-01-29.0.log @@ -0,0 +1,4165 @@ +2021-01-29 10:47:36,094 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 24236 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-29 10:47:36,105 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 10:47:36,162 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-29 10:47:36,162 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-29 10:47:37,002 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 10:47:37,002 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 10:47:37,023 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. +2021-01-29 10:47:37,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 10:47:37,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 10:47:37,044 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 1ms. Found 0 repository interfaces. +2021-01-29 10:47:37,293 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 10:47:37,340 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 10:47:37,341 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-29 10:47:37,341 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-29 10:47:37,342 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 10:47:37,365 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-29 10:47:37,390 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$f9dad13f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 10:47:37,434 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2628bfbc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 10:47:37,582 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-29 10:47:37,582 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-29 10:47:37,962 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-29 10:47:37,973 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-29 10:47:37,983 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-29 10:47:37,983 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-29 10:47:38,103 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-29 10:47:38,103 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1941 ms +2021-01-29 10:47:39,149 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 10:47:39,258 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 10:47:40,122 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-29 10:47:40,164 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 10:47:40,193 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 10:47:40,193 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 10:48:40,283 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-29 10:48:40,298 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Stopping service [Tomcat] +2021-01-29 10:48:40,306 INFO [restartedMain] o.s.b.a.l.ConditionEvaluationReportLoggingListener [ConditionEvaluationReportLoggingListener.java:142] + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2021-01-29 10:51:51,793 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 7128 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-29 10:51:51,793 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 10:51:51,838 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-29 10:51:51,838 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-29 10:51:52,355 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 10:51:52,356 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 10:51:52,368 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 9ms. Found 0 repository interfaces. +2021-01-29 10:51:52,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 10:51:52,378 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 10:51:52,389 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 4ms. Found 0 repository interfaces. +2021-01-29 10:51:52,641 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 10:51:52,688 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 10:51:52,689 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-29 10:51:52,689 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 10:51:52,708 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-29 10:51:52,730 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$dd218f7d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 10:51:52,764 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$96f7dfa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 10:51:52,872 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-29 10:51:52,874 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-29 10:51:53,183 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-29 10:51:53,193 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-29 10:51:53,199 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-29 10:51:53,199 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-29 10:51:53,283 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-29 10:51:53,283 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1445 ms +2021-01-29 10:51:53,984 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 10:51:54,074 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 10:51:54,689 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-29 10:51:54,727 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 10:51:54,756 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 10:51:54,756 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 10:51:54,847 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 10:51:54,862 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 10:51:54,866 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 10:51:54,866 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 10:51:54,868 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 10:51:54,876 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 10:51:54,877 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-29 10:51:54,878 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 10:51:54,880 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 10:51:54,880 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 10:51:54,881 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 10:51:54,888 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-29 10:51:54,890 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 3.401 seconds (JVM running for 4.286) +2021-01-29 10:51:54,938 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 27 +2021-01-29 10:51:54,939 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-29 10:51:54,946 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-29 10:52:01,689 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-29 10:52:01,689 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-29 10:52:01,695 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 6 ms +2021-01-29 10:52:02,848 INFO [http-nio-8080-exec-10] i.l.c.EpollProvider [EpollProvider.java:68] Starting without optional epoll library +2021-01-29 10:52:02,850 INFO [http-nio-8080-exec-10] i.l.c.KqueueProvider [KqueueProvider.java:70] Starting without optional kqueue library +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.login]. +2021-01-29 10:52:49,386 INFO [http-nio-8080-exec-6] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-29 10:52:49,528 INFO [http-nio-8080-exec-6] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-29 10:52:49,610 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:49,622 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,633 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 10:52:49,658 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 10:52:49,664 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,668 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,681 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,682 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,683 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,685 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,686 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,686 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,689 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,690 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,693 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 10:52:49,695 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:49,702 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:49,840 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:49,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:49,848 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:51,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:51,317 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:51,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:52:51,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:52:51,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:52:51,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:51,335 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:51,338 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:51,339 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:51,341 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:51,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:51,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-29 10:52:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:51,458 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:51,467 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:51,468 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:52,747 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:52:52,753 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:52:52,754 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:52:52,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:52,758 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:52,858 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:52,859 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:52,871 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:52,872 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:56,565 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:56,566 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:56,567 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:52:56,571 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:52:56,576 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:52:56,577 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:56,580 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:56,581 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:56,583 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:56,584 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:56,585 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,484 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:58,486 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,492 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:52:58,494 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 10:52:58,496 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,496 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,498 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,498 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:52:58,625 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:03,258 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:53:03,267 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:03,462 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:53:03,464 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:03,475 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:53:03,476 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:06,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:53:06,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:06,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:06,897 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:06,900 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:06,911 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:53:06,914 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:53:06,915 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:06,917 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:53:06,918 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:06,933 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:53:06,934 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:53:06,936 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:53:06,938 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:53:07,033 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:53:07,034 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:03,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:03,917 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:03,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:03,920 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:03,934 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:03,935 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:03,935 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:03,937 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:09,075 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:09,077 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:09,078 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:56:09,082 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:56:09,085 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:09,086 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:09,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:09,090 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:09,092 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:09,093 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:09,095 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:09,337 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:09,338 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:09,342 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:09,344 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:10,984 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:13,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-29 10:56:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:13,039 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:13,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:13,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:56:13,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:56:13,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:56:13,042 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:56:13,043 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:13,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:13,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-29 10:56:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:13,144 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:13,154 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:13,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:14,649 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:14,650 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:14,651 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-29 10:56:14,692 INFO [http-nio-8080-exec-8] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 10:56:14,703 INFO [http-nio-8080-exec-8] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 10:56:14,703 INFO [http-nio-8080-exec-8] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 10:56:14,709 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 10:56:14,744 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:14,747 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:14,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:14,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:56:14,749 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:56:14,749 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:56:14,750 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:56:14,751 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:14,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:14,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-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:14,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-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:14,852 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:14,853 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:19,164 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:19,165 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:19,166 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.FollowService.unfollow]. +2021-01-29 10:56:19,190 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:56:19,196 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:19,198 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:19,288 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:19,289 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:19,294 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56: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-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:22,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:22,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:22,277 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-29 10:56:22,302 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:22,302 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:22,304 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:22,305 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:56:22,305 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:56:22,305 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:56:22,306 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:56:22,307 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:22,308 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:22,398 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:22,400 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:22,407 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:22,408 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:25,214 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:25,216 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:56:25,217 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:56:25,217 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:56:25,218 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:56:25,219 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:25,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:25,319 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:25,320 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:27,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:27,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:27,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:27,420 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:27,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-29 10:56:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:27,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-29 10:56:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:30,402 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:30,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:30,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:56:30,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:56:30,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:30,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:30,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:30,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:30,422 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:30,530 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:30,530 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,293 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:32,294 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,295 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:32,296 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 10:56:32,298 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,299 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,299 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,300 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,300 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:32,302 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:32,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:32,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:32,414 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:32,415 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:38,012 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:38,012 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:38,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-29 10:56:38], 访问了[com.greate.community.service.UserService.findUserByName]. +2021-01-29 10:56:40,043 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:40,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:40,046 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:56:40,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:56:40,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:40,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:40,057 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:40,063 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:40,064 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:40,175 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:48,324 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:48,325 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:48,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:48,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 10:56:48,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 10:56:48,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 10:56:48,328 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 10:56:48,328 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:48,330 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:48,565 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:48,566 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:48,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-29 10:56:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:48,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-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,844 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:50,845 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,846 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:50,848 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 10:56:50,849 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,850 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,851 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,852 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,853 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:50,854 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:50,956 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:50,957 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:50,964 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:50,965 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:54,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-29 10:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:54,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-29 10:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:54,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-29 10:56:54], 访问了[com.greate.community.service.UserService.findUserByName]. +2021-01-29 10:56:54,231 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:54], 访问了[com.greate.community.service.MessageService.addMessage]. +2021-01-29 10:56:56,277 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:56,279 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,281 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:56,283 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 10:56:56,285 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,286 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,286 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,287 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,288 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,289 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:56,290 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:56,387 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:56,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:56,398 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:56,399 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:58,649 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:58,650 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:58,651 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:58,652 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:56:58,653 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:56:58,762 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:58,763 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:56:58,773 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:56:58,774 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:01,414 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:01,415 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:01,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:57:01,419 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:01,420 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:57:01,421 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:01,423 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:57:01,426 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:01,427 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:01,440 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:01,441 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:01,447 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:01,447 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:01,449 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:01,451 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:01,589 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:01,591 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:06,907 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:06,908 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:06,909 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:06,910 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:06,969 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:06,971 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:06,972 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:06,975 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:31,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:31,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:31,780 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:57:31,783 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:31,783 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:57:31,785 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:31,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:57:31,789 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:31,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:57:31,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:31,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:57:31,800 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:31,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:31,802 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:31,803 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:31,809 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:31,810 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:31,812 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:31,813 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:32,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:32,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:33,307 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:33,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-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:33,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-29 10:57:33], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:57:33,314 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:57:33,317 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:57:33,318 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:33,321 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:33,322 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:33,323 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:33,325 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:57:33,326 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:57:33,425 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:33,426 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:57:33,433 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:57:33,434 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:58:15,740 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:58:15,741 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:58:15,743 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 10:58:15,747 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 10:58:15,750 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 10:58:15,751 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:58:15,753 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:58:15,754 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:58:15,755 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:58:15,757 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:58:15,758 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:58:16,001 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:58:16,002 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:58:16,011 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:58:16,012 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:59:17,634 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:59:17,635 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:59:17,636 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:59:17,638 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:59:17,639 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:59:17,640 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:59:17,641 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:59:17,645 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:59:17,645 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 10:59:17,648 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:59:17,652 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 10:59:17,656 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:59:17,657 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:59:17,659 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:59:17,659 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:59:17,665 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:59:17,666 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 10:59:17,668 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 10:59:17,670 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 10:59:17,911 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 10:59:17,912 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,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-29 11:00:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:00:15,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-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,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-29 11:00:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:00:15,246 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 11:00:15,249 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,250 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,250 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,251 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,251 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,252 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:00:15,252 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:00:15,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:00:15,353 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:15,358 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:00:15,359 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:21,558 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:00:21,559 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:21,560 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:00:21,562 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:21,562 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:00:21,563 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:00:21,564 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:00:21,577 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:00:21,580 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:00:21,581 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:00:21,583 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:00:21,589 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:00:21,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:00:21,592 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:00:21,594 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:36,076 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:36,078 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:36,080 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.logout]. +2021-01-29 11:03:36,081 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:36,084 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:36,104 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:36,345 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:43,139 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:43,140 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.login]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,173 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,173 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,173 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:03:43,175 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:43,176 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:43,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:43,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:43,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:43,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,486 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:44,487 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,488 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:03:44,491 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:03:44,495 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:44,497 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,500 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:44,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,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-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,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-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:44,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,511 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,514 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:44,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,516 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,517 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:44,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,520 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,522 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,523 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:44,525 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:44,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:44,627 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:44,629 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:44,641 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:44,641 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:45,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:45,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:45,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:03:45,322 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:45,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:45,324 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:45,325 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:03:45,329 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:45,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:45,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:45,336 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:03:45,339 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:45,340 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:45,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:45,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:45,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:45,349 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:45,350 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:45,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:45,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,785 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:47,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:03:47,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:03:47,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:47,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:47,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,805 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,805 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:47,806 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,809 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,810 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:47,811 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,812 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,813 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:47,815 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,819 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,820 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:47,822 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:47,823 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:47,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:47,923 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:47,933 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:47,934 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:51,035 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:51,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-29 11:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:51,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-29 11:03:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:51,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-29 11:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,171 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:55,172 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:03:55,178 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:03:55,183 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:55,184 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,188 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,189 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:55,191 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,194 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,194 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:55,196 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,198 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,199 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:55,200 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,201 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,202 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:03:55,204 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,207 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,208 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,209 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:55,210 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:55,211 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:55,407 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:55,408 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:55,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-29 11:03:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:55,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-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:56,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:56,345 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:56,346 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:03:56,348 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:56,349 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:56,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:56,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:03:56,355 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:56,355 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:56,358 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:56,361 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:03:56,365 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:56,365 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:56,368 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:56,372 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:56,374 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:56,375 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:56,376 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:56,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-29 11:03:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:56,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-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,469 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:58,470 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,471 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:03:58,475 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-29 11:03:58,479 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,480 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,483 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,483 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:03:58,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 11:03:58,489 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:03:58,490 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:03:58,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:03:58,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:00,597 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:00,598 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:00,598 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:00,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 11:04:00,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 11:04:00,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 11:04:00,600 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 11:04:00,600 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:00,602 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:00,803 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:00,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-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:00,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-29 11:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:00,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-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:09,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-29 11:04:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:09,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-29 11:04:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:09,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:09,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:09,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:09,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:09,514 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:09,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-29 11:04:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:11,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:11,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:11,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 11:04:11,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:11,301 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 11:04:12,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:12,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:12,602 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:12,602 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,139 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,140 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:13,141 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:13,146 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,149 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,150 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:13,151 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,157 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,157 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,158 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:13,159 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:13,160 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:14,015 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:14,016 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:14,017 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:14,019 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:14,019 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:14,020 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:14,022 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:14,026 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:14,027 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:14,030 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:14,033 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:14,036 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:14,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:14,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:14,043 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:14,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:14,045 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:14,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:14,143 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:14,144 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:15,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:15,457 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:15,462 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:15,571 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:15,572 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:15,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:15,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:16,262 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:16,263 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:16,263 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:16,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-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:16,266 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:16,268 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:16,269 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:16,273 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:16,274 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:16,277 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:16,279 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:16,283 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:16,284 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:16,287 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:16,290 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:16,291 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:16,292 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:16,293 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:16,391 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:16,391 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:18,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:04:18,849 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:18,854 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:18,861 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:18,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:18,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:18,976 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:18,989 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:20,147 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:20,153 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:20,156 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:20,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:20,160 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:20,163 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:20,166 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:20,167 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:20,170 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:20,173 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:20,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:20,175 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:20,176 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:20,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:21,587 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:04:21,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,598 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:21,719 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:21,720 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:22,754 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:22,755 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:22,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:22,757 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:22,760 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:22,760 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:22,763 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:22,766 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:22,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:22,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:22,773 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:22,882 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:22,883 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:23,798 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:23,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:23,800 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:23,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:23,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:23,805 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:23,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:23,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,471 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:24,472 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,473 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:04:24,477 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:04:24,480 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:24,481 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,484 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,485 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:24,486 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,489 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,490 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:24,491 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,494 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,494 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:24,495 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,496 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,497 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:04:24,497 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,503 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:24,504 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:24,505 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:24,602 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:24,603 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:24,615 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:24,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-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:25,190 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:25,190 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:25,191 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:25,193 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:25,193 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:25,194 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:25,195 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:25,198 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:25,199 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:25,202 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:25,205 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:04:25,209 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:25,209 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:04:25,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-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:25,216 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:25,217 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:25,218 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:25,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:25,314 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:25,315 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:46,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:46,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:04:46,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-29 11:04:46], 访问了[com.greate.community.service.UserService.logout]. +2021-01-29 11:04:46,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:04:46,276 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:04:46,294 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:04:46,532 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:07,688 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:07,691 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.login]. +2021-01-29 11:05:07,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:07,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,712 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 11:05:07,713 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 11:05:07,714 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,717 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:07,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:07,726 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:13,346 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:13,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 11:05:13,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 11:05:13,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:13,453 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:13,465 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:13,466 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:14,352 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:14,352 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.FollowService.unfollow]. +2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:14,376 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:14,377 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:14,378 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 11:05:14,378 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 11:05:14,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 11:05:14,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 11:05:14,380 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:14,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:14,473 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:14,474 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:15,920 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:15,921 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:15,922 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-29 11:05:15,945 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:15,946 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:15,946 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:15,946 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-29 11:05:15,947 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-29 11:05:15,947 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-29 11:05:15,947 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-29 11:05:15,948 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:15,949 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:16,038 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:16,039 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:16,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-29 11:05:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:16,048 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,312 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:18,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 11:05:18,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 11:05:18,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,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-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,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-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,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-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:18,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:18,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:18,424 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:18,425 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:18,435 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:18,436 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:20,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:20,198 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:20,199 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 11:05:20,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:20,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:20,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-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 11:05:20,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-29 11:05:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 11:05:20,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:20,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:20,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 11:05:20,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 11:05:20,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 11:05:20,215 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:20,216 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:20,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:20,328 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:20,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:20,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:29,077 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:29,078 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:29,079 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 11:05:29,082 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:29,082 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:29,083 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 11:05:29,083 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 11:05:29,084 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:29,085 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:29,185 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:29,185 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:29,195 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:29,196 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:30,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-29 11:05:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:30,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-29 11:05:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:30,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-29 11:05:30], 访问了[com.greate.community.service.LikeService.like]. +2021-01-29 11:05:30,224 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:30,224 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 11:05:32,804 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:32,804 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:32,805 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.logout]. +2021-01-29 11:05:32,806 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:32,807 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:32,824 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:32,920 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:39,141 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:39,143 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.login]. +2021-01-29 11:05:39,165 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:39,167 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,168 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 11:05:39,171 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 11:05:39,173 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,174 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,174 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,178 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,178 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,181 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,181 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 11:05:39,182 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:39,184 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:39,283 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:39,284 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:39,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:39,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:40,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:40,370 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:40,370 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:05:40,374 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:05:40,377 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:05:40,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:40,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:40,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:40,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:40,386 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:40,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:40,486 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:40,487 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:40,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-29 11:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:40,498 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:41,193 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:41,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:41,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:41,196 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:41,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:41,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:41,199 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:41,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-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:41,204 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:41,207 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:41,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:41,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:41,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:41,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-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:41,221 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:41,222 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:41,222 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:41,223 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:41,325 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:41,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:49,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:49,291 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:49,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:49,295 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-29 11:05:49,299 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:49,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:49,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 11:05:49,303 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:49,304 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:49,407 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:49,408 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:57,301 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:57,302 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:57,303 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:57,305 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:57,306 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:57,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:57,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:57,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:57,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:57,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:57,317 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:57,320 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:57,321 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:57,323 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:57,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:57,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:57,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:57,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:57,463 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:57,464 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:58,477 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:58,478 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:58,478 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:58,483 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-29 11:05:58,487 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:58,487 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:58,488 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:58,488 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:58,489 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 11:05:58,491 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:58,492 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:58,593 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:58,594 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:59,808 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:59,809 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:59,810 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:59,812 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:59,813 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:59,815 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:59,816 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:59,819 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:59,820 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:59,823 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:59,825 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:05:59,829 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:05:59,942 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:05:59,942 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:00,846 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:00,847 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:00,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:00,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 11:06:00,854 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:00,855 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:00,955 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:00,956 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:01,878 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:01,879 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:01,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:06:01,883 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:01,884 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:01,885 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:01,886 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:06:01,889 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:01,889 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:01,892 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:01,895 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:06:01,899 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:01,899 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:01,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:01,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:01,906 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:01,907 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:01,908 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:02,010 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:02,011 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:03,584 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:03,585 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:03,586 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 11:06:03,589 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 11:06:03,592 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 11:06:03,593 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:03,597 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:03,597 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:03,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:03,600 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:03,601 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:03,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-29 11:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:03,706 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:03,712 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:03,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:04,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:06:04,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:04,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:04,302 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:04,305 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 11:06:04,308 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 11:06:04,309 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 11:06:04,311 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:04,315 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:04,316 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:04,317 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 11:06:04,318 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 11:06:04,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 15:03:28,501 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 31716 (started by 19124 in E:\GreateCommunity) +2021-01-29 15:03:28,503 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 15:03:29,248 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:03:29,251 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:03:29,409 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 151ms. Found 1 repository interfaces. +2021-01-29 15:03:29,419 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:03:29,421 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:03:29,441 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-29 15:03:29,441 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. +2021-01-29 15:03:29,717 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 15:03:29,774 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 15:03:29,776 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:03:29,800 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-29 15:03:29,872 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$df6babff] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:03:29,907 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bb99a7c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:03:30,052 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-29 15:03:30,056 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-29 15:03:31,721 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-29 15:03:31,722 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-29 15:03:31,722 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-29 15:03:31,722 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-29 15:03:31,723 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-29 15:03:31,723 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-29 15:03:33,444 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-29 15:03:34,655 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 15:03:34,839 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 15:03:35,832 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:03:35,892 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:03:35,892 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:03:35,988 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:03:36,003 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:03:36,008 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:03:36,008 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:03:36,010 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:03:36,014 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:03:36,020 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:03:36,021 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:03:36,021 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:03:36,022 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:03:36,025 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:03:36,027 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:03:36,027 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:03:36,028 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:03:36,033 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:03:36,039 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:03:36,039 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:03:36,039 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:03:36,046 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:03:36,047 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:03:36,048 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:03:36,049 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:03:36,049 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:03:36,052 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 29 +2021-01-29 15:03:36,058 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] +2021-01-29 15:03:36,058 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 7.925 seconds (JVM running for 8.668) +2021-01-29 15:03:36,062 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] +2021-01-29 15:03:36,231 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-29 15:03:36,448 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-29 15:03:36,682 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:03:36,683 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:03:36,692 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:03:36,693 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:03:36,696 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-29 15:03:37,718 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... +2021-01-29 15:03:37,722 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. +2021-01-29 15:06:37,151 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 11484 (started by 19124 in E:\GreateCommunity) +2021-01-29 15:06:37,153 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 15:06:37,885 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:06:37,887 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:06:38,026 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 134ms. Found 1 repository interfaces. +2021-01-29 15:06:38,040 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:06:38,043 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:06:38,071 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-29 15:06:38,072 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. +2021-01-29 15:06:38,446 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 15:06:38,517 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 15:06:38,517 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:06:38,591 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-29 15:06:38,640 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$bc6ef8e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:06:38,690 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$e8bce763] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:06:38,861 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-29 15:06:38,866 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-29 15:06:40,643 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-29 15:06:40,644 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-29 15:06:40,644 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-29 15:06:40,644 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-29 15:06:40,645 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-29 15:06:40,645 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-29 15:06:42,485 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-29 15:06:43,319 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 15:06:43,519 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 15:06:44,606 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:06:44,668 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:06:44,668 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:06:44,776 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:06:44,787 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:06:44,791 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:06:44,791 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:06:44,793 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:06:44,797 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:06:44,803 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:06:44,803 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:06:44,803 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:06:44,804 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:06:44,807 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:06:44,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:06:44,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:06:44,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:06:44,814 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:06:44,819 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 32 +2021-01-29 15:06:44,819 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:06:44,819 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:06:44,820 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:06:44,821 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] +2021-01-29 15:06:44,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:06:44,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] +2021-01-29 15:06:44,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:06:44,827 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:06:44,828 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:06:44,829 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:06:44,835 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 8.083 seconds (JVM running for 8.886) +2021-01-29 15:06:45,017 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-29 15:06:45,237 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-29 15:06:45,793 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:06:45,794 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:06:45,799 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:06:45,800 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:06:45,802 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-29 15:06:46,828 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... +2021-01-29 15:06:46,836 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. +2021-01-29 15:18:05,742 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 22720 (started by 19124 in E:\GreateCommunity) +2021-01-29 15:18:05,743 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 15:18:06,371 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:18:06,373 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:18:06,509 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 129ms. Found 1 repository interfaces. +2021-01-29 15:18:06,519 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:18:06,520 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:18:06,541 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-29 15:18:06,542 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 15ms. Found 0 repository interfaces. +2021-01-29 15:18:06,829 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 15:18:06,887 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 15:18:06,887 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:18:06,947 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-29 15:18:06,987 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$871421a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:18:07,029 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$34bf3097] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:18:07,190 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-29 15:18:07,193 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-29 15:18:09,070 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-29 15:18:09,072 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-29 15:18:09,072 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-29 15:18:09,072 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-29 15:18:09,073 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-29 15:18:09,073 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-29 15:18:11,043 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-29 15:18:11,812 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 15:18:11,978 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 15:18:12,860 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:18:12,944 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:18:12,944 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:18:13,049 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:18:13,060 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:18:13,064 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:18:13,065 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:18:13,067 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:18:13,071 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:18:13,078 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:18:13,078 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:18:13,078 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:18:13,079 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:18:13,083 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:18:13,084 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:18:13,085 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:18:13,085 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:18:13,092 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:18:13,097 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:18:13,098 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:18:13,099 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:18:13,099 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 35 +2021-01-29 15:18:13,104 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] +2021-01-29 15:18:13,106 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:18:13,107 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] +2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:18:13,115 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 7.695 seconds (JVM running for 8.46) +2021-01-29 15:18:13,516 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:18:13,516 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:18:13,523 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:18:13,523 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:18:13,527 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-29 15:31:45,160 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 17364 (started by 19124 in E:\GreateCommunity) +2021-01-29 15:31:45,161 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 15:31:45,892 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:31:45,894 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:31:46,013 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 114ms. Found 1 repository interfaces. +2021-01-29 15:31:46,022 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 15:31:46,024 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 15:31:46,037 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-29 15:31:46,037 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. +2021-01-29 15:31:46,327 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 15:31:46,387 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 15:31:46,387 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 15:31:46,412 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-29 15:31:46,451 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$980b6461] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:31:46,496 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c45952de] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 15:31:46,686 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-29 15:31:46,688 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-29 15:31:48,475 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-29 15:31:48,476 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-29 15:31:48,476 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-29 15:31:48,477 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-29 15:31:48,477 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-29 15:31:48,477 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-29 15:31:50,234 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-29 15:31:50,987 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 15:31:51,143 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 15:31:52,018 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:31:52,072 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:31:52,072 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:31:52,168 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:31:52,179 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:31:52,183 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:31:52,183 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:31:52,185 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:31:52,189 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:31:52,195 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:31:52,196 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:31:52,196 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:31:52,197 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:31:52,200 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:31:52,200 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:31:52,200 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:31:52,201 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:31:52,206 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 15:31:52,209 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 15:31:52,209 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 15:31:52,209 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 15:31:52,211 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 38 +2021-01-29 15:31:52,213 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] +2021-01-29 15:31:52,215 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 15:31:52,215 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 15:31:52,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] +2021-01-29 15:31:52,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 15:31:52,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 15:31:52,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-29 15:31:52,224 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 7.402 seconds (JVM running for 8.113) +2021-01-29 15:31:52,458 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:31:52,459 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService +2021-01-29 15:31:52,467 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:31:52,467 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped +2021-01-29 15:31:52,470 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-29 16:25:05,011 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 27080 (started by 19124 in E:\GreateCommunity) +2021-01-29 16:25:05,012 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 16:25:05,863 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 16:25:05,867 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 16:25:06,025 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 151ms. Found 1 repository interfaces. +2021-01-29 16:25:06,036 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 16:25:06,038 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 16:25:06,062 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-29 16:25:06,062 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. +2021-01-29 16:25:06,383 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 16:25:06,445 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 16:25:06,446 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 16:25:06,446 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 16:25:06,446 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 16:25:06,447 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 16:25:06,447 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 16:25:06,523 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-29 16:25:06,570 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$980b6461] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 16:25:06,617 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c45952de] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 16:25:06,831 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-29 16:25:06,835 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-29 16:25:07,001 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 17424 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-29 16:25:07,004 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-29 16:25:07,081 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-29 16:25:07,081 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-29 16:25:07,695 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 16:25:07,697 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 16:25:07,746 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 46ms. Found 1 repository interfaces. +2021-01-29 16:25:07,755 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-29 16:25:07,756 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-29 16:25:07,769 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-29 16:25:07,769 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. +2021-01-29 16:25:08,037 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-29 16:25:08,081 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-29 16:25:08,081 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-29 16:25:08,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-29 16:25:08,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 16:25:08,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-29 16:25:08,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-29 16:25:08,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 16:25:08,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-29 16:25:08,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-29 16:25:08,129 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$fea5e9cb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 16:25:08,165 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2af3d848] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-29 16:25:08,281 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-29 16:25:08,283 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-29 16:25:08,291 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-29 16:25:08,292 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-29 16:25:08,293 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-29 16:25:08,293 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-29 16:25:08,293 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-29 16:25:08,294 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-29 16:25:08,687 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-29 16:25:08,699 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-29 16:25:08,709 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-29 16:25:08,709 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-29 16:25:08,825 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-29 16:25:08,825 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1744 ms +2021-01-29 16:25:09,761 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-29 16:25:09,762 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-29 16:25:10,930 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-29 16:25:11,936 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-29 16:25:12,220 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-29 16:25:12,330 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-29 16:25:12,970 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 16:25:13,008 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 16:25:13,008 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 16:25:13,110 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 16:25:13,278 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 16:25:13,282 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 16:25:13,283 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 16:25:13,286 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 16:25:13,290 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 16:25:13,296 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 16:25:13,296 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 16:25:13,297 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 16:25:13,298 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 16:25:13,300 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 16:25:13,302 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 16:25:13,303 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 16:25:13,303 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 16:25:13,310 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 16:25:13,314 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 16:25:13,314 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 16:25:13,315 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-29 16:25:13,321 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 41 +2021-01-29 16:25:13,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-29 16:25:13,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 16:25:13,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-29 16:25:13,325 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-29 16:25:13,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-29 16:25:13,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-29 16:25:13,331 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-29 16:25:13,342 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.Fetcher [Fetcher.java:601] [Consumer clientId=consumer-2, groupId=test-consumer-group] Resetting offset for partition publish-0 to offset 0. +2021-01-29 16:25:13,343 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-29 16:25:13,347 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-29 16:25:13,349 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 6.745 seconds (JVM running for 7.743) +2021-01-29 16:25:16,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-29 16:25:16,330 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] +2021-01-29 16:25:16,331 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] +2021-01-29 16:25:16,331 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-29 16:25:16,372 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 42 +2021-01-29 16:25:16,373 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-29 16:25:16,373 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 42 +2021-01-29 16:25:16,373 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-29 16:25:16,375 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-29 16:25:16,375 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-29 16:25:42,024 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-29 16:25:42,024 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-29 16:25:42,033 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 9 ms +2021-01-29 16:25:42,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:42,143 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-29 16:25:42,145 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:42,260 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-29 16:25:42,405 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:42,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:42,905 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:45,319 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:45,322 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:45,329 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 16:25:45,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 16:25:45,340 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 16:25:45,341 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:45,345 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:45,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:45,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:45,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:45,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:45,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-29 16:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:45,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-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:45,493 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:45,494 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:48,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 16:25:48,056 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,085 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:48,085 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:48,192 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:48,193 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:48,204 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:48,204 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:49,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,787 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,787 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,789 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,798 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:49,800 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,805 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,805 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:49,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:49,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:49,830 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:49,833 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:49,943 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:49,944 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:49,949 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,299 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:51,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 16:25:51,302 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 16:25:51,306 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,306 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,309 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,309 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,310 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,310 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,312 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,312 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,313 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,315 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,315 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,316 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,316 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:51,317 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:51,318 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:51,413 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:51,415 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:51,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-29 16:25:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:51,422 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,525 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,531 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,534 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,535 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:53,539 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,539 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:53,545 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,545 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,549 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,549 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:53,551 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,552 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,552 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,553 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:53,554 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:53,555 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,555 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,556 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,556 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:53,557 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:53,558 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,559 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:25:53,559 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:25:53,560 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:25:53,561 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:25:53,562 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:25:53,563 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:25:53,664 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:25:53,676 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:25:53,677 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:26:05,801 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:15,424 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:15,425 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:15,426 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:26:15,427 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:15,429 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:15,429 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:26:15,429 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:26:15,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-29 16:26:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:26:15,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-29 16:26:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:26:15,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:15,537 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:15,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-29 16:26:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:15,549 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:18,731 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:18,733 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:18,736 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:26:18,739 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:26:18,740 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:26:18,836 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:18,838 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,883 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:31,883 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,885 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 16:26:31,887 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 16:26:31,889 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,889 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,894 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,894 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,894 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,896 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,896 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,896 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:31,897 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:26:31,897 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:26:31,898 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:26:32,030 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:32,031 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:32,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:32,043 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:33,455 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:33,456 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:26:33,457 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:26:33,463 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:26:33,464 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:26:33,569 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:26:33,570 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:11,447 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:11,448 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:11,464 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:11], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. +2021-01-29 16:27:11,564 INFO [http-nio-8080-exec-5] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-29 16:27:11,580 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-29 16:27:11,580 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-29 16:27:11,585 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,701 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,701 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,702 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,702 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,705 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,706 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:13,710 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:13,710 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:13,711 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:13,997 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:13,999 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27: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-29 16:27:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:14,005 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:17,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:17,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:17,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:27:17,298 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:17,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:17,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:17,300 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:17,301 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:17,302 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:17,403 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:17,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-29 16:27:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:18,774 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:18,775 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:18,776 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.LikeService.like]. +2021-01-29 16:27:18,800 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:18,800 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:26,234 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:26,235 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:26,246 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:27:26,258 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:26,260 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:26,287 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:26,288 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:26,289 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:27:26,291 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:26,291 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:26,292 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:26,292 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:26,293 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:26,294 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:26,294 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:26,295 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:26,296 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:27:26,298 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:26,299 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:28,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:28,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:28,209 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.LikeService.like]. +2021-01-29 16:27:28,213 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:28,214 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:33,618 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:33,618 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:33,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-29 16:27:33], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-29 16:27:33,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-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-29 16:27:33,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-29 16:27:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:33,628 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:33,648 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:33,649 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:33,650 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:27:33,651 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:33,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:33,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:33,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:33,654 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:33,654 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:33,655 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:33,655 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:33,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:33,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:33,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:33,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:33,660 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:27:33,662 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:33,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:33,769 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:33,770 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,596 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:38,598 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-29 16:27:38,604 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-29 16:27:38,606 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:38,607 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:38,625 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:38,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:38,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:40,769 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:40,769 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:40,770 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.LikeService.like]. +2021-01-29 16:27:40,774 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:40,775 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:41,475 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:41,476 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:41,476 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.LikeService.like]. +2021-01-29 16:27:41,481 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:27:41,481 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-29 16:27:43,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:43,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:43,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-29 16:27:43,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-29 16:27:43,356 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-29 16:27:43,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:43,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:43,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:43,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:43,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:43,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:43,464 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:43,465 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:43,472 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:43,472 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:45,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:45,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:45,778 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:45,782 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:45,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:45,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:45,785 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:45,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:45,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:45,792 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:45,796 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:45,800 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:45,801 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:45,804 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:45,807 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:45,808 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:45,826 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:45,831 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:45,928 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:45,929 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,028 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:48,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,031 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:48,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-29 16:27:48,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:48,040 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 16:27:48,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:48,045 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:48,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-29 16:27:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:48,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-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:51,787 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:51,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:51,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:51,790 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:51,791 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:51,792 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:51,795 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:51,799 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:51,800 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:51,802 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:51,805 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:51,810 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:51,811 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:51,815 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:51,818 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:51,819 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:51,820 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:51,821 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:52,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:52,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:53,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:53,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-29 16:27:53,573 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:53,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-29 16:27:53,581 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:53,582 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:53,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-29 16:27:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:53,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-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:55,112 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:55,113 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:55,114 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:55,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:55,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:55,117 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:55,131 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-29 16:27:55,135 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-29 16:27:55,140 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:27:55,383 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:27:55,384 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,363 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:03,364 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,365 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:28:03,378 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,380 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,380 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,382 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,382 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,382 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,383 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,383 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,384 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,384 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,384 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,385 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,385 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,386 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:03,386 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:03,387 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:28:03,388 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:28:03,570 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:03,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,777 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:13,778 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:28:13,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,791 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,791 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,792 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,792 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,795 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,795 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,795 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:13,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:13,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:28:13,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:28:13,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-29 16:28:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:13,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-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,332 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:17,333 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,334 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:28:17,343 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,343 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,345 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,345 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,346 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,348 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,348 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,349 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,349 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:17,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:17,353 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:28:17,354 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:28:17,449 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:17,450 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:18,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:18,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:18,744 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:28:18,750 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:18,751 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:18,752 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:28:18,754 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:28:18,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-29 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:18,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-29 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,227 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:22,228 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,229 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,243 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:22,243 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:28:22,249 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:28:22,342 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:22,343 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,776 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:26,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-29 16:28:26,779 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-29 16:28:26,781 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,782 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,785 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,785 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,786 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,786 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,787 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,787 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,787 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,788 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,788 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-29 16:28:26,791 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-29 16:28:26,792 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-29 16:28:26,918 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:26,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-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-29 16:28:26,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-29 16:28:26,924 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. diff --git a/log/community/info/log-info-2021-01-30.0.log b/log/community/info/log-info-2021-01-30.0.log new file mode 100644 index 00000000..4142fa40 --- /dev/null +++ b/log/community/info/log-info-2021-01-30.0.log @@ -0,0 +1,7188 @@ +2021-01-30 20:17:45,937 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 30660 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 20:17:45,961 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 20:17:46,036 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 20:17:46,037 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 20:17:47,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 20:17:47,117 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 20:17:47,193 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 72ms. Found 1 repository interfaces. +2021-01-30 20:17:47,208 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 20:17:47,209 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 20:17:47,230 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 20:17:47,230 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. +2021-01-30 20:17:47,629 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 20:17:47,691 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 20:17:47,692 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:17:47,692 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:17:47,693 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:17:47,693 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 20:17:47,693 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:17:47,694 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:17:47,694 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:17:47,720 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-30 20:17:47,750 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$f5dffce7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 20:17:47,804 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$222deb64] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 20:17:47,985 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-30 20:17:47,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-30 20:17:48,373 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 20:17:48,386 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 20:17:48,395 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 20:17:48,395 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 20:17:48,509 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 20:17:48,509 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2471 ms +2021-01-30 20:17:49,671 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 20:17:49,672 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 20:17:49,672 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 20:17:49,673 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 20:17:49,673 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 20:17:49,673 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 20:17:50,845 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 20:17:55,067 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 20:17:55,596 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 20:17:55,836 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 20:17:56,922 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 427020a3-6d5b-4186-a449-778b01a0a43a + +2021-01-30 20:17:57,001 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 20:17:57,061 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@75056aaa, org.springframework.security.web.context.SecurityContextPersistenceFilter@28dd86e2, org.springframework.security.web.header.HeaderWriterFilter@b47ab86, org.springframework.security.web.authentication.logout.LogoutFilter@a39eefe, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@30268076, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3e07def3, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@23326f2, org.springframework.security.web.session.SessionManagementFilter@2716de88, org.springframework.security.web.access.ExceptionTranslationFilter@7549425e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3b4d8937] +2021-01-30 20:17:57,231 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:17:57,301 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:17:57,301 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:17:57,457 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:17:57,474 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:17:57,480 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:17:57,481 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:17:57,484 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:17:57,490 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:17:57,500 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:17:57,500 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:17:57,503 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:17:57,507 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:17:57,508 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:17:57,513 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:17:57,514 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:17:57,514 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:17:57,519 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:17:57,526 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:17:57,526 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:17:57,527 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:17:57,536 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:17:57,537 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:17:57,539 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:17:57,540 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:17:57,540 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:17:57,547 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 20:17:57,574 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 20:17:57,577 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 12.41 seconds (JVM running for 13.927) +2021-01-30 20:17:57,612 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 44 +2021-01-30 20:17:57,613 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 44 +2021-01-30 20:17:57,616 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:17:57,616 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 20:17:57,628 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 20:17:57,628 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 20:18:07,989 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 20:18:07,989 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 20:18:07,996 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-30 20:18:08,838 INFO [http-nio-8080-exec-8] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 20:18:08,840 INFO [http-nio-8080-exec-8] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 20:18:10,660 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:10], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:18:10,696 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 20:18:10,886 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 20:18:10,926 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:10], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:18:10,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-30 20:18:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:10,984 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:10,991 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:10,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-30 20:18:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:10,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-30 20:18:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,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-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,004 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,038 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,040 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,044 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,045 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,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-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,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-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,049 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,053 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:11,054 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:11,055 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,717 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:18:31,720 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:18:31,725 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,726 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,727 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,729 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,730 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,730 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,731 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,733 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,734 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,735 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,735 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,737 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,737 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,738 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,739 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,739 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,740 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,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-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:31,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-30 20:18:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:31,742 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,207 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:18:53,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,246 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,249 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,252 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,253 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,254 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,254 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,256 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,256 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,257 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,257 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,258 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:18:53,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-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,369 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:18:53,373 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:18:53,374 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:18:53,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:18:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:01,115 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:01,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:01,117 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:01,117 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:01,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-30 20:19:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:01,254 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:01,257 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:01,257 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:01], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:02,497 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:02,498 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:02,499 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:02,500 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:02,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-30 20:19:02], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-30 20:19:02,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-30 20:19:02], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-30 20:19:02,506 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-30 20:19:02,506 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-30 20:19:02,508 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:02,513 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:02,616 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:02,617 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:02,618 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:03,644 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:03,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-30 20:19:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:03,649 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:03,751 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:03,752 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:03,753 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:03,762 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:03,763 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:03,764 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:04,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-30 20:19:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:04,684 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:04,685 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:04,685 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-30 20:19:04,761 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:04,762 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-30 20:19:04,763 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:04,765 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-30 20:19:04,770 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:04,770 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-30 20:19:04,775 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:04,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-30 20:19:04,782 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:04,783 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-30 20:19:04,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:04,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:04,791 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:04,792 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:04,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:04,891 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:04,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-30 20:19:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:04,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-30 20:19:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:05,770 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:05,771 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:05,772 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:05,773 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-30 20:19:05,777 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-30 20:19:05,781 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-30 20:19:05,783 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:05,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-30 20:19:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:05,787 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:05,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:05,790 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:05,791 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:05,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-30 20:19:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:05,920 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:05,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-30 20:19:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:05,926 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:05,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-30 20:19:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:05,930 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:09,322 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:09,324 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:09,325 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:09,326 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:09,327 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-30 20:19:09,327 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-30 20:19:09,328 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-30 20:19:09,328 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-30 20:19:09,329 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:09,330 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:09,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-30 20:19:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:09,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-30 20:19:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:09,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-30 20:19:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:11,120 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:11,120 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:11,121 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:11,122 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:11,123 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:11,227 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:11,228 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:11,229 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.updateHeader]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:15,658 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:15,658 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,660 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:15,665 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:19:15,667 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,671 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,671 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,673 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,673 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,681 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:15,681 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:15,683 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:15,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-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,779 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:15,787 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:15,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:15,789 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:18,249 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:18,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-30 20:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:18,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-30 20:19:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:18,252 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:18,253 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:18,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:18,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:18,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:22,545 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:22,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-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,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-30 20:19:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:22,549 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.updateHeader]. +2021-01-30 20:19:22,554 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:22,556 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:22,574 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:22,575 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,577 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:22,578 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:19:22,579 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:19:22,581 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,582 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,583 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,584 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,585 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,585 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,586 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,587 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,587 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,588 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,588 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,589 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,589 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,590 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,590 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,590 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,591 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,591 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,592 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,592 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:22,593 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:22,594 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:22,732 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:22,733 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,735 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:22,744 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:22,745 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:22,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-30 20:19:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:25,026 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:25,027 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:25,027 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:25,028 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:25,028 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-30 20:19:25,028 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-30 20:19:25,029 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-30 20:19:25,029 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-30 20:19:25,030 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:25,031 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:25,131 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:25,132 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:25,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-30 20:19:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:26,513 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:26,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-30 20:19:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:26,515 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:26,515 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:26,518 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:26,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-30 20:19:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:26,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-30 20:19:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:26,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-30 20:19:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:28,030 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:28,031 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:28,032 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:28,032 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-30 20:19:28,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-30 20:19:28,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-30 20:19:28,042 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:28,045 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:28,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:28,047 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:28,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:28,049 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:28,145 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:28,146 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:28,147 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:28,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:28,158 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:28,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:34,789 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:34,790 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:34,791 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:34,795 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:34,796 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:34,796 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:34,798 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:34,800 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:34,925 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:34,926 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:34,927 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:42,627 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:42,628 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:42,629 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:42,630 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 20:19:42,631 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:42,633 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:42,652 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:42,753 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:58,567 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:58,569 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 20:19:58,587 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:58,588 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,589 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:58,590 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:19:58,592 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:19:58,595 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,595 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,596 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,596 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,597 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,597 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,598 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,598 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,598 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,599 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,599 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,600 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,600 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,600 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,601 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,601 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,603 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:19:58,603 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:19:58,605 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:19:58,704 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:58,705 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,705 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:19:58,715 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:19:58,716 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:19:58,717 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:19:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:04,142 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:04,143 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:04,144 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:04,145 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:04,148 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:04,418 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:04,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-30 20:20:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:04,419 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:04,419 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:04,420 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:04,420 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:11,325 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:11,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:11,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:11,328 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:11,331 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:11,425 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:11,425 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:11,426 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:11,426 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:11,426 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:11,426 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:12,464 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:12,465 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:12,466 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:12,467 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:12,468 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:12,558 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:12,558 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:12,559 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:12,559 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:12,560 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:12,560 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:13,225 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:13,225 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:13,226 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:13,227 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:13,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-30 20:20:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:13,325 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:13,325 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:13,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:13,326 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:13,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:13,327 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:24,669 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:24,670 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:24,671 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:24,671 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:24,673 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:24,978 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:24,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-30 20:20:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:24,979 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:24,979 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:24,980 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:24,980 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:28,825 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:28,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-30 20:20:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:28,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-30 20:20:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:28,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-30 20:20:28], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 20:20:28,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-30 20:20:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:28,829 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:28,846 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:28,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-30 20:20:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:37,686 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:37,688 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 20:20:37,708 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:37,708 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,709 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:37,709 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:20:37,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:20:37,713 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,714 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,717 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,717 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:37,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:37,725 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:37,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-30 20:20:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:37,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-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,830 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:37,841 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:37,842 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:37,843 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:37], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:43,848 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:43,850 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:43,851 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:43,852 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:43], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 20:20:43,854 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:43,856 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:43,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-30 20:20:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:44,119 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:47,138 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:47,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-30 20:20:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:54,955 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 20:20:54,976 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:54,976 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,977 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,985 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:20:54,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-30 20:20:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:20:55,097 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:55,098 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:55,099 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:55], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:20:55,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:20:55,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:20:55,108 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:20:55], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:08,172 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:08,173 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:08,174 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:08,175 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:21:08,177 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:21:08,451 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:08,451 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:08,452 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:08,452 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:08,453 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:08,453 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:21:10,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-30 20:21:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:21:10,575 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:10,577 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:10,578 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:12,465 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:12,466 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:12,466 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:21:12,467 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 20:21:12,467 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:21:12,469 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:21:12,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-30 20:21:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:12,591 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:15,195 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:15,196 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:21:15,198 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:21:15,200 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,200 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,201 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,201 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,201 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,202 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,202 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,202 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,203 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,203 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,204 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,204 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,204 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,206 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,206 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,206 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:21:15,207 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:21:15,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:21:15,455 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:21:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:00,528 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 23220 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 20:48:00,532 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 20:48:00,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 20:48:00,602 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 20:48:01,742 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 20:48:01,745 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 20:48:01,835 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 85ms. Found 1 repository interfaces. +2021-01-30 20:48:01,854 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 20:48:01,856 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 20:48:01,881 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 20:48:01,882 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 14ms. Found 0 repository interfaces. +2021-01-30 20:48:02,409 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 20:48:02,485 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 20:48:02,487 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:48:02,487 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:48:02,488 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:48:02,488 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 20:48:02,489 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:48:02,489 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:48:02,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:48:02,524 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-30 20:48:02,561 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$9e77be73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 20:48:02,627 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$cac5acf0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 20:48:02,896 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-30 20:48:02,901 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-30 20:48:03,622 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 20:48:03,643 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 20:48:03,658 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 20:48:03,659 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 20:48:03,832 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 20:48:03,833 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 3230 ms +2021-01-30 20:48:05,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 20:48:05,765 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 20:48:05,765 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 20:48:05,765 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 20:48:05,766 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 20:48:05,766 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 20:48:07,171 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 20:48:10,550 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 20:48:10,875 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 20:48:11,009 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 20:48:12,003 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 3a722c0e-f41a-4dd0-a4a5-a4df0d23869f + +2021-01-30 20:48:12,094 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 20:48:12,150 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7fc063a5, org.springframework.security.web.context.SecurityContextPersistenceFilter@17df2794, org.springframework.security.web.header.HeaderWriterFilter@68dd72e8, org.springframework.security.web.authentication.logout.LogoutFilter@6b504a65, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@50d84de1, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3f3315c2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@36c9de9b, org.springframework.security.web.session.SessionManagementFilter@7e516810, org.springframework.security.web.access.ExceptionTranslationFilter@256200b, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3895dc80] +2021-01-30 20:48:12,319 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:12,374 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:12,375 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:12,501 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:12,518 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:12,524 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:12,524 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:12,527 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:48:12,534 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:12,545 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:12,546 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:12,551 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:12,552 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:48:12,555 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:12,559 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:48:12,560 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:48:12,560 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:48:12,561 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:12,567 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:12,568 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:12,568 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:48:12,569 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:12,576 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:12,576 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:12,577 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:12,577 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:48:12,580 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:48:12,581 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:48:12,581 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:48:12,585 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 46 +2021-01-30 20:48:12,585 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:12,589 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:48:12,595 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 20:48:12,746 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:12,753 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:12,754 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:12,755 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:48:12,764 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:12,765 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:48:12,766 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:48:12,767 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:48:12,767 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:48:12,773 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 20:48:12,795 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 20:48:12,799 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 12.897 seconds (JVM running for 14.614) +2021-01-30 20:48:15,668 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 20:48:15,676 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:48:15,677 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-30 20:48:15,677 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:48:15,725 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 47 +2021-01-30 20:48:15,725 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 47 +2021-01-30 20:48:15,725 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 47 +2021-01-30 20:48:15,726 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 20:48:15,726 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 20:48:15,726 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:48:15,734 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 20:48:15,835 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 20:48:15,903 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.Fetcher [Fetcher.java:601] [Consumer clientId=consumer-6, groupId=test-consumer-group] Resetting offset for partition delete-0 to offset 0. +2021-01-30 20:48:15,904 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 20:48:18,073 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 20:48:18,073 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 20:48:18,081 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-30 20:48:18,106 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:18,182 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 20:48:18,184 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 20:48:18,906 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:25,390 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:25,513 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:28,358 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:32,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-30 20:48:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:32,858 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:36,049 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 20:48:36,062 INFO [http-nio-8080-exec-10] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 20:48:36,189 INFO [http-nio-8080-exec-10] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 20:48:36,249 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,253 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:48:36,260 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,304 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,310 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,312 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:36,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-30 20:48:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:48:36,333 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:48:36,445 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:36,448 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,449 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:48:36,457 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:36,459 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:36,463 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:48:49,512 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:49,513 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:49,514 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:48:49,516 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:49], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. +2021-01-30 20:48:49,596 INFO [http-nio-8080-exec-1] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:48:49,609 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:48:49,609 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:48:49,614 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:48:51,666 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:51,667 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,668 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:48:51,669 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 20:48:51,671 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,681 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,681 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,682 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,682 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,683 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,685 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,686 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,687 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,687 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,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-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,689 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,690 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:48:51,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:48:51,693 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:48:51,941 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:51,942 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,944 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:48:51,955 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:48:51,957 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:48:51,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:48:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:49:09,571 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:49:09,574 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:49:09,575 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:49:09,581 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 20:49:09,583 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:49:09,584 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:49:09,585 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 20:49:09,587 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 20:49:09,594 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:49:09,596 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:49:09,844 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:49:09,845 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:49:09,847 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 20:49:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:51:13,763 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:51:13,765 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:51:13,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:51:13,768 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 20:51:13,771 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:51:13,772 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 20:51:13,772 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 20:51:13,773 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 20:51:13,775 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:51:13,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:51:14,025 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:51:14,026 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:51:14,028 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:51:25,605 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:51:25,606 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:51:25,607 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:51:25,608 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:51:25,609 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:51:25,677 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 20:51:25,679 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 20:51:25,680 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 20:51:25,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 20:51:25,685 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 20:51:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 20:52:53,187 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 24620 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 20:52:53,191 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 20:52:53,246 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 20:52:53,246 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 20:52:54,000 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 20:52:54,001 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 20:52:54,055 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 50ms. Found 1 repository interfaces. +2021-01-30 20:52:54,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 20:52:54,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 20:52:54,077 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 20:52:54,078 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. +2021-01-30 20:52:54,344 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 20:52:54,387 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 20:52:54,388 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:52:54,388 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:52:54,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:52:54,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 20:52:54,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 20:52:54,390 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:52:54,390 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 20:52:54,411 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-30 20:52:54,433 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$9e3935a4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 20:52:54,472 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$ca872421] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 20:52:54,590 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-30 20:52:54,592 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-30 20:52:54,965 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 20:52:54,976 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 20:52:54,984 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 20:52:54,984 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 20:52:55,088 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 20:52:55,089 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1842 ms +2021-01-30 20:52:56,327 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 20:52:56,328 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 20:52:56,328 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 20:52:56,328 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 20:52:56,329 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 20:52:56,329 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 20:52:57,292 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 20:53:00,117 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 20:53:00,340 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 20:53:00,445 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 20:53:01,043 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 31b4d4a7-a177-4eae-8cbf-9fdf769fec4b + +2021-01-30 20:53:01,088 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 20:53:01,122 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2b038b1d, org.springframework.security.web.context.SecurityContextPersistenceFilter@74bca8a9, org.springframework.security.web.header.HeaderWriterFilter@5893c0b0, org.springframework.security.web.authentication.logout.LogoutFilter@3dac8f5b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@159a8ec2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6ca7e7c5, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@213b4f9, org.springframework.security.web.session.SessionManagementFilter@352857af, org.springframework.security.web.access.ExceptionTranslationFilter@97835a5, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@46affc5e] +2021-01-30 20:53:01,224 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:53:01,257 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:53:01,257 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:53:01,350 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:53:01,361 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:53:01,365 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:53:01,365 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:53:01,367 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:53:01,371 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:53:01,375 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:53:01,376 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:53:01,377 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:53:01,377 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:53:01,378 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:53:01,380 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:53:01,380 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:53:01,380 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:53:01,381 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:53:01,385 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:53:01,385 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:53:01,386 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:53:01,386 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:53:01,389 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:53:01,390 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:53:01,390 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:53:01,390 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:53:01,391 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:53:01,391 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:53:01,391 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:53:01,392 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 49 +2021-01-30 20:53:01,394 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:53:01,394 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:53:01,396 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 20:53:01,397 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 20:53:01,399 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 20:53:01,400 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 20:53:01,400 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 20:53:01,404 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 20:53:01,404 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 20:53:01,405 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 20:53:01,406 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 20:53:01,406 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:53:01,409 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 20:53:01,421 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 20:53:01,423 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 8.759 seconds (JVM running for 9.917) +2021-01-30 20:53:04,396 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 20:53:04,398 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:53:04,398 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-30 20:53:04,398 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 20:53:04,426 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 50 +2021-01-30 20:53:04,426 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 50 +2021-01-30 20:53:04,426 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 50 +2021-01-30 20:53:04,426 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 20:53:04,426 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 20:53:04,427 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 20:53:04,428 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 20:53:04,428 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 20:53:04,428 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:00:12,520 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:00:12,521 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:00:12,529 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 8 ms +2021-01-30 21:00:12,553 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:12,621 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:00:12,623 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:00:12,733 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:12,762 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:00:12,775 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:00:12,906 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:00:12,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-30 21:00:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:00:13,449 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:13,451 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:13,454 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00: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-30 21:00:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:22,253 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:22], 访问了[com.greate.community.service.DiscussPostSerivce.updateType]. +2021-01-30 21:00:22,315 INFO [http-nio-8080-exec-3] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:00:22,325 INFO [http-nio-8080-exec-3] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:00:22,325 INFO [http-nio-8080-exec-3] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:00:22,329 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:00:29,445 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:29,446 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:29,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-30 21:00:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:29,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-30 21:00:29], 访问了[com.greate.community.service.DiscussPostSerivce.updateStatus]. +2021-01-30 21:00:35,199 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:35,201 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:35,203 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:35,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:00:35,207 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:35,208 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:35,209 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:00:35,210 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:00:35,213 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:00:35,214 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:00:35,464 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:35,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-30 21:00:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:35,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-30 21:00:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:36,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-30 21:00:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:36,985 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:36,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-30 21:00:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:36,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-30 21:00:36], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:00:36,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-30 21:00:36], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:00:36,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:36,997 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:36,998 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:36,998 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:36,999 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,000 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,000 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,002 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,002 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,004 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,004 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,006 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,006 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,007 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,007 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:37,008 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:00:37,012 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:00:37,056 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:37,056 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:37,057 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:37], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:00:39,904 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,905 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,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-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,911 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,912 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,912 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,913 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,914 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,914 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,915 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,915 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,916 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,916 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,917 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:39,918 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:39,918 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:00:39,920 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:39], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:00:40,012 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:40,013 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:40,014 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:40,021 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:40,022 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:40,023 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:55,933 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:55,934 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:55,935 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:55,936 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:00:55,938 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:55,938 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:00:55,939 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:00:55,940 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:00:55,941 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:00:55,943 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:00:56,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-30 21:00:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:56,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-30 21:00:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:56,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-30 21:00:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:58,260 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:58,261 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:58,262 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:00:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:00:58,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-30 21:00:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:00:58,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-30 21:00:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:00:58,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-30 21:00:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:03:01,916 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 31896 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:03:01,931 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:03:01,980 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:03:01,980 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:03:02,863 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:03:02,865 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:03:02,938 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 68ms. Found 1 repository interfaces. +2021-01-30 21:03:02,950 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:03:02,951 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:03:02,969 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:03:02,970 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. +2021-01-30 21:03:03,313 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:03:03,367 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:03:03,368 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:03:03,368 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:03:03,369 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:03:03,369 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:03:03,370 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:03:03,370 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:03:03,370 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:03:03,395 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-30 21:03:03,422 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$9a13de32] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:03:03,470 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c661ccaf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:03:03,616 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-30 21:03:03,619 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-30 21:03:04,060 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:03:04,073 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:03:04,083 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:03:04,083 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:03:04,208 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:03:04,209 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2229 ms +2021-01-30 21:03:05,346 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:03:05,347 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:03:05,347 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:03:05,347 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:03:05,348 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:03:05,348 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:03:06,314 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:03:09,116 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:03:09,326 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:03:09,437 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:03:10,414 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 91b2016d-09bf-4a57-8bf3-6955945e0703 + +2021-01-30 21:03:10,484 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:03:10,535 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1828d1fa, org.springframework.security.web.context.SecurityContextPersistenceFilter@160282d9, org.springframework.security.web.header.HeaderWriterFilter@2dfa2eb9, org.springframework.security.web.authentication.logout.LogoutFilter@3003c5f1, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@63ae390c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2ab19d74, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@78fb342e, org.springframework.security.web.session.SessionManagementFilter@6e42a70f, org.springframework.security.web.access.ExceptionTranslationFilter@7cf22f30, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4cc9b361] +2021-01-30 21:03:10,680 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:03:10,722 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:03:10,723 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:03:10,819 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:03:10,827 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:03:10,832 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:03:10,832 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:03:10,834 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:03:10,838 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:03:10,845 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:03:10,845 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:03:10,846 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:03:10,846 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:03:10,848 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:03:10,849 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:03:10,850 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:03:10,850 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:03:10,856 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:03:10,859 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:03:10,860 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:03:10,860 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:03:10,861 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:03:10,861 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 52 +2021-01-30 21:03:10,863 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:03:10,865 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:03:10,865 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:03:10,865 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:03:10,866 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:03:10,866 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:03:10,866 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:03:10,866 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:03:10,867 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:03:10,869 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:03:10,871 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:03:10,874 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:03:10,874 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:03:10,875 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:03:10,879 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:03:10,879 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:03:10,880 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:03:10,881 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:03:10,881 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:03:10,885 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:03:10,900 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:03:10,902 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.485 seconds (JVM running for 10.628) +2021-01-30 21:03:13,869 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:03:13,871 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [delete-0] +2021-01-30 21:03:13,871 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [delete-0] +2021-01-30 21:03:13,871 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:03:13,895 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 53 +2021-01-30 21:03:13,895 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 53 +2021-01-30 21:03:13,895 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 53 +2021-01-30 21:03:13,896 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:03:13,897 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:03:13,897 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:03:13,898 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:03:13,898 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:03:13,898 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:03:13,923 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:03:13,923 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:03:13,929 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 6 ms +2021-01-30 21:03:13,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:03:14,017 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:03:14,018 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:03:14,106 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:14,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-30 21:03:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:03:14,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-30 21:03:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:03:14,142 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:03:14,263 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:03:14,291 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03: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-30 21:03:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:03: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-30 21:03:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:03: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-30 21:03:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:03:14,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-30 21:03:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:03:14,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:03:14,792 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:03:14,795 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:14,797 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:03:16,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-30 21:03:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:03:16,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-30 21:03:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:16,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-30 21:03:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:03:30,125 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:03:30,126 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:03:30,135 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:03:30,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-30 21:03:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:03:30,380 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:30,382 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:30], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:03:31,532 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:03:31,534 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:03:31,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:03:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:05:14,179 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 32540 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:05:14,183 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:05:14,247 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:05:14,248 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:05:15,048 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:05:15,049 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:05:15,102 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 49ms. Found 1 repository interfaces. +2021-01-30 21:05:15,110 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:05:15,111 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:05:15,126 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:05:15,126 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. +2021-01-30 21:05:15,393 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:05:15,439 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:05:15,439 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:05:15,439 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:05:15,440 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:05:15,440 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:05:15,441 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:05:15,441 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:05:15,441 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:05:15,463 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-30 21:05:15,486 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$423801e1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:05:15,532 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$6e85f05e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:05:15,663 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-30 21:05:15,665 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-30 21:05:16,085 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:05:16,101 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:05:16,112 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:05:16,113 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:05:16,249 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:05:16,249 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2001 ms +2021-01-30 21:05:17,463 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:05:17,464 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:05:17,465 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:05:17,465 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:05:17,465 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:05:17,465 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:05:18,615 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:05:21,649 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:05:22,015 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:05:22,115 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:05:22,772 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: c46077cd-9752-4cf0-b688-689754329ed7 + +2021-01-30 21:05:22,836 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:05:22,880 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7095477, org.springframework.security.web.context.SecurityContextPersistenceFilter@3306e927, org.springframework.security.web.header.HeaderWriterFilter@3ccf2994, org.springframework.security.web.authentication.logout.LogoutFilter@5aee7e20, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@702185e6, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@18eb5512, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@54d957a6, org.springframework.security.web.session.SessionManagementFilter@2df3b7ba, org.springframework.security.web.access.ExceptionTranslationFilter@5421195c, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3a179876] +2021-01-30 21:05:23,001 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:05:23,040 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:05:23,040 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:05:23,133 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:05:23,145 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:05:23,150 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:05:23,150 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:05:23,152 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:05:23,156 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:05:23,162 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:05:23,162 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:05:23,163 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:05:23,164 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:05:23,165 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:05:23,167 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:05:23,167 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:05:23,167 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:05:23,168 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:05:23,173 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:05:23,173 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:05:23,173 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:05:23,174 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:05:23,177 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:05:23,178 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:05:23,178 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:05:23,178 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:05:23,179 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:05:23,179 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:05:23,179 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:05:23,179 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 55 +2021-01-30 21:05:23,181 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:05:23,181 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:05:23,183 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:05:23,185 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:05:23,186 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:05:23,186 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:05:23,187 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:05:23,192 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:05:23,192 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:05:23,193 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:05:23,194 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:05:23,194 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:05:23,198 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:05:23,213 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:05:23,215 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.526 seconds (JVM running for 10.351) +2021-01-30 21:05:26,183 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:05:26,184 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:05:26,184 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-30 21:05:26,184 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:05:26,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 56 +2021-01-30 21:05:26,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 56 +2021-01-30 21:05:26,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 56 +2021-01-30 21:05:26,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:05:26,218 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:05:26,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:05:26,220 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:05:26,220 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:05:26,220 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:06:01,011 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 15540 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:06:01,015 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:06:01,100 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:06:01,100 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:06:01,896 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:06:01,897 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:06:01,960 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 59ms. Found 1 repository interfaces. +2021-01-30 21:06:01,970 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:06:01,971 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:06:01,988 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:06:01,988 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 9ms. Found 0 repository interfaces. +2021-01-30 21:06:02,302 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:06:02,354 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:06:02,354 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:06:02,355 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:06:02,355 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:06:02,356 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:06:02,356 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:06:02,356 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:06:02,357 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:06:02,381 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-30 21:06:02,408 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$c3d9e937] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:06:02,456 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$f027d7b4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:06:02,608 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-30 21:06:02,611 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-30 21:06:03,039 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:06:03,053 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:06:03,062 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:06:03,063 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:06:03,188 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:06:03,188 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2088 ms +2021-01-30 21:06:04,383 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:06:04,384 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:06:04,384 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:06:04,384 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:06:04,385 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:06:04,385 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:06:05,406 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:06:08,188 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:06:08,376 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:06:08,474 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:06:09,083 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: d1d59eeb-71b1-4227-ae03-172ae7d97cd5 + +2021-01-30 21:06:09,126 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:06:09,161 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6d54d1e6, org.springframework.security.web.context.SecurityContextPersistenceFilter@1fa14baa, org.springframework.security.web.header.HeaderWriterFilter@3ad1934f, org.springframework.security.web.authentication.logout.LogoutFilter@31e31744, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@41b60649, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@a17d7a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1fc43abe, org.springframework.security.web.session.SessionManagementFilter@50ca1a2f, org.springframework.security.web.access.ExceptionTranslationFilter@2d313020, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@21cc9f40] +2021-01-30 21:06:09,259 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:09,293 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:09,293 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:09,384 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:09,395 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:09,399 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:09,399 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:09,401 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:06:09,403 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:09,408 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:09,408 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:09,409 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:09,410 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:06:09,411 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:09,412 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:06:09,413 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:06:09,413 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:06:09,413 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:09,417 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:09,417 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:09,417 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:06:09,418 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:09,421 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:09,421 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:06:09,422 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:09,422 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:09,422 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:06:09,422 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:06:09,422 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:06:09,423 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 58 +2021-01-30 21:06:09,425 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:06:09,426 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:09,427 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:09,428 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:06:09,430 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:09,430 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:09,431 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:06:09,434 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:09,434 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:06:09,435 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:06:09,435 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:06:09,435 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:06:09,439 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:06:09,450 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:06:09,451 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 8.929 seconds (JVM running for 10.087) +2021-01-30 21:06:12,427 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:06:12,429 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:06:12,429 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-30 21:06:12,429 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:06:12,455 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 59 +2021-01-30 21:06:12,455 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 59 +2021-01-30 21:06:12,455 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 59 +2021-01-30 21:06:12,457 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:06:12,457 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:06:12,457 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:06:12,459 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:06:12,459 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:06:12,459 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:06:19,971 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:06:19,971 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:06:19,978 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-30 21:06:20,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:20,070 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:06:20,071 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:06:20,158 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:20,162 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:20,185 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:06:20,199 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:06:20,339 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:06:20,372 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:20,373 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:20,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-30 21:06:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:06:20,385 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:06:20,395 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:06:20,412 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:06:20,911 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:20,914 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:20,916 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:22,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-30 21:06:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:22,121 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,123 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:22,129 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.DiscussPostSerivce.updateStatus]. +2021-01-30 21:06:22,189 INFO [http-nio-8080-exec-4] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:06:22,199 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:06:22,200 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:06:22,203 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:06:22,235 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:22,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:06:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:06:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,249 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,252 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,253 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,254 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,256 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,257 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,257 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,258 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,262 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,265 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,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-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,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-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:22,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-30 21:06:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:06: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-30 21:06:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:06:22,385 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:22,386 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:22,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:22,399 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:22,401 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:24,110 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:24,112 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,114 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:24,115 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:06:24,117 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,122 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,125 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,125 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,126 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,131 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,135 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,135 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:06:24,233 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:24,234 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,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-30 21:06:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:06:24,245 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:06:24,247 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:06:24,248 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:06:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:10:22,134 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 32408 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:10:22,140 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:10:22,206 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:10:22,207 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:10:23,131 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:10:23,133 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:10:23,196 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 59ms. Found 1 repository interfaces. +2021-01-30 21:10:23,206 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:10:23,207 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:10:23,223 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:10:23,223 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. +2021-01-30 21:10:23,526 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:10:23,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:10:23,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:10:23,588 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:10:23,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:10:23,590 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:10:23,590 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:10:23,590 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:10:23,591 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:10:23,618 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-30 21:10:23,650 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$5e9262a9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:10:23,706 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8ae05126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:10:23,867 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-30 21:10:23,870 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-30 21:10:24,327 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:10:24,340 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:10:24,349 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:10:24,349 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:10:24,466 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:10:24,466 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2259 ms +2021-01-30 21:10:25,663 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:10:25,664 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:10:25,664 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:10:25,664 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:10:25,665 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:10:25,665 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:10:27,022 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:10:29,818 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:10:30,010 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:10:30,109 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:10:30,725 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: e96ca57f-ef01-4847-b577-c55105708aa3 + +2021-01-30 21:10:30,768 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:10:30,798 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2c50dea, org.springframework.security.web.context.SecurityContextPersistenceFilter@3c4f50db, org.springframework.security.web.header.HeaderWriterFilter@a39eefe, org.springframework.security.web.authentication.logout.LogoutFilter@6fa8f015, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@40a4135, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@39797bcb, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@716e44cf, org.springframework.security.web.session.SessionManagementFilter@2eab8c5c, org.springframework.security.web.access.ExceptionTranslationFilter@3a22ad9e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@238724d5] +2021-01-30 21:10:30,889 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:10:30,919 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:10:30,920 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:10:30,998 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:10:31,009 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:10:31,013 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:10:31,013 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:10:31,015 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:10:31,019 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:10:31,024 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:10:31,024 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:10:31,025 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:10:31,025 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:10:31,026 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:10:31,028 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:10:31,029 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:10:31,029 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:10:31,029 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:10:31,033 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:10:31,033 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:10:31,034 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:10:31,034 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:10:31,038 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:10:31,039 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:10:31,039 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:10:31,039 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:10:31,039 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:10:31,040 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:10:31,040 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:10:31,040 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 61 +2021-01-30 21:10:31,042 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:10:31,043 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:10:31,044 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:10:31,045 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:10:31,047 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:10:31,047 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:10:31,048 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:10:31,052 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:10:31,052 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:10:31,053 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:10:31,053 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:10:31,053 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:10:31,056 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:10:31,068 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:10:31,070 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.715 seconds (JVM running for 10.689) +2021-01-30 21:10:34,046 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:10:34,047 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:10:34,047 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-30 21:10:34,047 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:10:34,075 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 62 +2021-01-30 21:10:34,075 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 62 +2021-01-30 21:10:34,075 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 62 +2021-01-30 21:10:34,078 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:10:34,078 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:10:34,078 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:10:34,079 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:10:34,079 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:10:34,079 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:11:28,708 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:11:28,708 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:11:28,716 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 8 ms +2021-01-30 21:11:28,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-30 21:11:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:28,807 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:11:28,808 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:11:28,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-30 21:11:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:28,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-30 21:11:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:11:28,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-30 21:11:28], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 21:11:28,932 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:11:28,960 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:11:29,090 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:11:29,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-30 21:11:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:11:29,148 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:29,591 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,652 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,653 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,664 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:30,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-30 21:11:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:30,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:30,794 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:31,661 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:11:31,664 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:31,671 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,672 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11: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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11: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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,678 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,682 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,683 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,683 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:31,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:31,695 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:31,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:31,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-30 21:11:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:31,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:31,711 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:31,713 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:31,877 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:37,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-30 21:11:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:37,137 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:11:37,139 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:11:37,143 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,144 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,146 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,147 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,147 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,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-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,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-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,149 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,150 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,151 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,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-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,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-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,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-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,154 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:37,156 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:37,259 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:37,268 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:39,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-30 21:11:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:39,530 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:11:39,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:39,534 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:39,535 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:39,537 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:39,538 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:39,538 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:39,541 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:39,542 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:39,542 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:39,543 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:39,543 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:39,544 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:39,544 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:39,677 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:45,199 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:45,200 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:11:45,202 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:11:45,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,207 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,208 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,208 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,209 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,209 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,210 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,210 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,211 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,211 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,213 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,214 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,215 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,215 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,216 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,216 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,217 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,217 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,218 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,218 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,350 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:45,364 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:45,991 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:45,992 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:11:45,995 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,995 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,996 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:45,998 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:45,998 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:45,999 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:46,001 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,001 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,002 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,002 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,002 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,003 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,003 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,004 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,005 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,006 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,006 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,007 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,007 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,008 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,009 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,009 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,010 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,010 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:46,012 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,012 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,013 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:46,014 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:46,017 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,017 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,018 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:46,019 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,020 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,021 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:46,023 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,024 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,024 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:46,026 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,027 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,027 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,028 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:46,029 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:46,030 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:46,030 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:11:46,031 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:11:46,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:50,827 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:51,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-30 21:11:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:58,299 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:58,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 21:11:58,337 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:58,338 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,340 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:11:58,341 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:11:58,344 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:11:58,346 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,347 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,348 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,349 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,349 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,350 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,350 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,351 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,351 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,352 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,352 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,352 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,353 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,353 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,354 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,355 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,355 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,356 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,357 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,357 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:11:58,358 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:11:58,360 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:11:58,455 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:58,457 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,458 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:11:58,467 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:11:58,468 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:11:58,469 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:11:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:00,208 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:00,209 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,210 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:00,211 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:12:00,212 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,213 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:00,213 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,221 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:00,221 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:00,222 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,222 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,224 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:12:00,227 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:00,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-30 21:12:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:12:00,323 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:00,325 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:00,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:00], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:08,099 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:08,100 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:08,101 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:08,102 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 21:12:08,102 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:08,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-30 21:12:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:12:08,121 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:08,264 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:16,957 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,133 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,133 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,133 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,137 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:20,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-30 21:12:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:20,139 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:12:20,422 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:20,423 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,424 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:20,435 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:20,436 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:20,436 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:25,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-30 21:12:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:25,531 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,532 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:25,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:12:25,534 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,535 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:25,535 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:25,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:12:25,537 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,538 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:25,538 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:25,539 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:12:25,540 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,541 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,541 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:25,542 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:25,542 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,543 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,543 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:25,544 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:25,544 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:12:25,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-30 21:12:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:25,548 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:12:25,652 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:25,653 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:25,655 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:32,002 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:32,003 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:32,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:32,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.DiscussPostSerivce.updateType]. +2021-01-30 21:12:32,032 INFO [http-nio-8080-exec-1] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:12:32,042 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:12:32,042 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:12:32,046 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:12:32,976 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:32,977 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:32,977 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:32,978 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:32], 访问了[com.greate.community.service.DiscussPostSerivce.updateStatus]. +2021-01-30 21:12:36,283 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:36,283 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,284 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:36,284 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:12:36,288 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,289 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,289 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,289 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,290 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,290 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,290 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,292 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,292 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,293 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,293 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,294 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:36,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:12:36,397 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:36,398 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,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-30 21:12:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:36,408 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:36,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:36,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:40,548 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:40,549 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,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-30 21:12:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:40,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-30 21:12:40], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:12:40,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-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,554 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:40,554 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:40,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-30 21:12:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:12:40,556 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,557 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:40,557 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:40,558 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:12:40,559 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,559 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,560 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:40,560 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:40,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:40,562 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:12:40,562 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:12:40,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:40,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:12:40,673 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:40,674 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:40,675 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:43,351 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:12:43,353 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,353 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:12:43,354 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:12:43,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:12:43,358 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,358 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,360 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,360 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,362 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,362 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,364 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,364 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,365 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,365 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:12:43,365 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:12:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:12:43,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-30 21:12:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:12:43,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-30 21:12:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:01,013 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 30764 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:24:01,016 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:24:01,050 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:24:01,051 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:24:01,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:24:01,709 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:24:01,776 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 62ms. Found 1 repository interfaces. +2021-01-30 21:24:01,788 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:24:01,789 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:24:01,806 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:24:01,806 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 9ms. Found 0 repository interfaces. +2021-01-30 21:24:02,169 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:24:02,230 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:24:02,231 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:24:02,232 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:24:02,232 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:24:02,233 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:24:02,233 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:24:02,233 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:24:02,233 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:24:02,263 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-30 21:24:02,294 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$649ca189] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:24:02,341 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$90ea9006] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:24:02,480 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-30 21:24:02,482 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-30 21:24:02,878 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:24:02,890 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:24:02,899 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:24:02,899 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:24:03,012 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:24:03,012 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1961 ms +2021-01-30 21:24:04,195 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:24:04,196 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:24:04,197 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:24:04,197 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:24:04,197 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:24:04,197 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:24:05,283 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:24:08,169 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:24:08,404 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:24:08,515 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:24:09,228 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: ed499b2f-ae8a-4cbf-99da-6a3789a586a8 + +2021-01-30 21:24:09,285 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:24:09,326 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4f85d102, org.springframework.security.web.context.SecurityContextPersistenceFilter@20c8da7a, org.springframework.security.web.header.HeaderWriterFilter@4503b121, org.springframework.security.web.authentication.logout.LogoutFilter@19a5b182, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@36a73b4b, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5d41dff1, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4a20b839, org.springframework.security.web.session.SessionManagementFilter@29bfb970, org.springframework.security.web.access.ExceptionTranslationFilter@59b4f277, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5cf0b5ba] +2021-01-30 21:24:09,449 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:24:09,488 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:24:09,488 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:24:09,591 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:24:09,602 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:24:09,606 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:24:09,607 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:24:09,611 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:24:09,617 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:24:09,624 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:24:09,625 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:24:09,630 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:24:09,630 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:24:09,632 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:24:09,634 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:24:09,635 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:24:09,635 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:24:09,642 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:24:09,647 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:24:09,648 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:24:09,648 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:24:09,649 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:24:09,653 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 64 +2021-01-30 21:24:09,656 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:24:09,659 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:24:09,660 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:24:09,662 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:24:09,664 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:24:09,667 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:24:09,667 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:24:09,668 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:24:09,669 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:24:09,671 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:24:09,676 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:24:09,683 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:24:09,684 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:24:09,684 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:24:09,692 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:24:09,693 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:24:09,694 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:24:09,695 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:24:09,695 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:24:09,698 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:24:09,718 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:24:09,721 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.051 seconds (JVM running for 9.929) +2021-01-30 21:24:12,661 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:24:12,679 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [delete-0] +2021-01-30 21:24:12,679 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [delete-0] +2021-01-30 21:24:12,679 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:24:12,718 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 65 +2021-01-30 21:24:12,718 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 65 +2021-01-30 21:24:12,718 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 65 +2021-01-30 21:24:12,720 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:24:12,722 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:24:12,722 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:24:12,724 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:24:12,724 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:24:12,724 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:24:17,868 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:24:17,868 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:24:17,875 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-30 21:24:17,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-30 21:24:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:17,970 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:24:17,971 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:18,085 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:24:18,100 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:24:18,230 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:18,291 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:18,304 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:18,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-30 21:24:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:18,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:18,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:18,821 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:18,824 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:18,826 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:20,353 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:20,354 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,355 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:20,357 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:24:20,360 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,360 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:20,362 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:20,364 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:20,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,368 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:20,368 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:20,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:20,371 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,372 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,374 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:20,375 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:20,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-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,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-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,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-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:20,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-30 21:24:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:20,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-30 21:24:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:20,381 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:20,382 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:20,485 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:20,487 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:20,488 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:21,637 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:21,638 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,639 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:21,640 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:24:21,644 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:24:21,647 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,648 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,649 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,653 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,654 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,660 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,662 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,666 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,666 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:21,667 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:21,667 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:21,669 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:25,103 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:25,104 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:25,105 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:25,107 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.UserService.logout]. +2021-01-30 21:24:25,109 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:25,111 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:25,135 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:25,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:29,569 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:29,580 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.login]. +2021-01-30 21:24:29,604 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:29,605 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,606 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:29,607 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:24:29,608 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:24:29,612 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,614 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,615 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,616 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,616 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,617 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,618 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,618 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,619 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,620 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,620 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,621 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,621 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,622 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,623 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,623 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,624 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,624 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,625 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,625 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:29,626 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:29,627 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:29,746 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:29,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,756 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:29,757 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:29,758 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:29,759 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:30,742 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:24:30,744 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,745 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:30,745 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:30,748 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,749 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:30,750 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:30,750 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:30,752 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,753 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,753 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:30,754 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:30,754 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,755 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:30,757 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:30,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-30 21:24:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:30,860 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:30,861 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:30,862 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:30], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:31,910 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:31,912 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,913 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:31,914 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:24:31,916 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:24:31,919 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,921 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,921 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,922 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,922 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,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-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,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-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,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-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,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-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,925 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,925 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,926 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,926 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,926 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,927 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,927 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,928 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:31,928 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:31,929 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:31,931 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:33,773 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,785 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,801 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,801 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,802 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,802 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,802 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,803 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:33,804 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,805 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,805 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,806 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:33,807 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:33,808 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,809 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,809 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,810 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:33,811 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,812 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,812 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,813 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:33,814 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,816 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,816 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,817 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:33,818 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:33,823 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:24:33,823 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:24:33,928 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:33,929 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,931 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:33,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-30 21:24:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:35,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:24:35,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:24:35,520 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:24:35,521 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:24:35,523 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,524 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,524 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,525 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,525 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,527 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,527 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,528 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,528 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,529 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,529 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,530 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,531 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,531 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,532 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,532 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:24:35,533 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:24:35,533 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:24:35,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:24:35], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:31:37,355 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 29036 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:31:37,369 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:31:37,457 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:31:37,457 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:31:38,267 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:31:38,269 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:31:38,326 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 54ms. Found 1 repository interfaces. +2021-01-30 21:31:38,335 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:31:38,336 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:31:38,350 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:31:38,351 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. +2021-01-30 21:31:38,636 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:31:38,683 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:31:38,683 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:31:38,684 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:31:38,684 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:31:38,685 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:31:38,685 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:31:38,685 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:31:38,685 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:31:38,707 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-30 21:31:38,731 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$d46dd5c1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:31:38,774 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bbc43e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:31:38,905 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-30 21:31:38,908 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-30 21:31:39,299 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:31:39,311 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:31:39,319 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:31:39,320 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:31:39,429 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:31:39,429 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1971 ms +2021-01-30 21:31:40,686 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:31:40,688 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:31:40,688 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:31:40,688 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:31:40,689 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:31:40,689 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:31:41,914 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:31:44,893 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:31:45,079 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:31:45,174 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:31:45,735 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 5372efc1-9643-444a-8404-82caf6413791 + +2021-01-30 21:31:45,778 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:31:45,809 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3de7b885, org.springframework.security.web.context.SecurityContextPersistenceFilter@7abc0b9c, org.springframework.security.web.header.HeaderWriterFilter@42f042c7, org.springframework.security.web.authentication.logout.LogoutFilter@17b0bf6a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@671308a2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@38faf70b, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3dae6101, org.springframework.security.web.session.SessionManagementFilter@40760cd4, org.springframework.security.web.access.ExceptionTranslationFilter@74fafde3, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5e9725ce] +2021-01-30 21:31:45,906 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:31:45,938 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:31:45,938 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:31:46,025 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:31:46,036 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:31:46,039 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:31:46,039 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:31:46,041 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:31:46,044 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:31:46,048 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:31:46,048 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:31:46,050 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:31:46,051 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:31:46,051 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:31:46,053 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:31:46,053 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:31:46,053 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:31:46,054 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:31:46,057 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:31:46,058 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:31:46,058 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:31:46,058 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:31:46,061 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:31:46,062 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:31:46,062 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:31:46,062 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:31:46,063 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:31:46,063 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:31:46,063 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:31:46,064 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 67 +2021-01-30 21:31:46,066 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:31:46,066 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:31:46,067 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:31:46,068 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:31:46,070 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:31:46,070 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:31:46,070 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:31:46,074 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:31:46,074 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:31:46,075 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:31:46,075 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:31:46,075 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:31:46,079 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:31:46,090 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:31:46,091 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.203 seconds (JVM running for 10.544) +2021-01-30 21:31:49,068 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:31:49,070 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:31:49,070 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-30 21:31:49,070 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:31:49,107 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 68 +2021-01-30 21:31:49,107 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 68 +2021-01-30 21:31:49,107 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 68 +2021-01-30 21:31:49,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:31:49,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:31:49,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:31:49,110 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:31:49,110 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:31:49,110 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:31:55,299 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:31:55,299 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:31:55,305 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 6 ms +2021-01-30 21:31:55,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:55,389 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:31:55,390 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:55,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:31:55,513 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:31:55,635 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:31:55,669 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,671 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,678 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,682 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,683 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:55,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-30 21:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:55,694 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:31:55,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:31:56,169 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:56,171 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:56,173 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:56,179 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:56,181 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:56,182 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31: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-30 21:31:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31: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-30 21:31:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31: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-30 21:31:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31: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-30 21:31:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:31: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-30 21:31:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:31:56,293 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:56,294 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:56,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-30 21:31:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:56,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:31:56,301 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:31:58,592 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:58,594 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,594 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:58,595 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:31:58,597 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:31:58,603 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,604 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,605 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,605 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,606 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,607 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,607 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,608 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,609 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,610 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,610 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,611 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,613 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,615 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,616 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,616 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,617 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,617 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,618 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,619 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:31:58,619 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:31:58,621 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:31:58,916 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:58,918 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:58,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-30 21:31:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:58,929 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:58,931 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:59,020 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:59,021 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:59,022 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:59,023 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:31:59,025 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:31:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:31:59,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-30 21:31:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:31:59,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-30 21:31:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:31:59,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-30 21:31:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:31:59,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-30 21:31:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:31:59,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-30 21:31:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:32:24,300 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 32360 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-30 21:32:24,305 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-30 21:32:24,399 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-30 21:32:24,400 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-30 21:32:25,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:32:25,530 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:32:25,654 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 116ms. Found 1 repository interfaces. +2021-01-30 21:32:25,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-30 21:32:25,675 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-30 21:32:25,711 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-30 21:32:25,711 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 21ms. Found 0 repository interfaces. +2021-01-30 21:32:26,343 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-30 21:32:26,437 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-30 21:32:26,438 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:32:26,439 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:32:26,440 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:32:26,441 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-30 21:32:26,442 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-30 21:32:26,442 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:32:26,442 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-30 21:32:26,480 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-30 21:32:26,528 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$2e6a565a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:32:26,600 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$5ab844d7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-30 21:32:26,802 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-30 21:32:26,805 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-30 21:32:27,268 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-30 21:32:27,280 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-30 21:32:27,289 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-30 21:32:27,289 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-30 21:32:27,401 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-30 21:32:27,401 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 3000 ms +2021-01-30 21:32:28,525 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-30 21:32:28,527 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-30 21:32:28,527 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-30 21:32:28,527 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-30 21:32:28,527 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-30 21:32:28,528 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-30 21:32:29,763 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-30 21:32:32,556 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-30 21:32:32,752 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-30 21:32:32,854 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-30 21:32:33,463 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: aad2f125-b73f-4afb-b933-135bc30fe5bd + +2021-01-30 21:32:33,509 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-30 21:32:33,544 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5e777ad4, org.springframework.security.web.context.SecurityContextPersistenceFilter@4737dd3a, org.springframework.security.web.header.HeaderWriterFilter@3b5e01f0, org.springframework.security.web.authentication.logout.LogoutFilter@18d4fc11, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@568f3a2f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@789d517a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@26324a87, org.springframework.security.web.session.SessionManagementFilter@5ee2c7cf, org.springframework.security.web.access.ExceptionTranslationFilter@7d256fd5, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@e95ac6] +2021-01-30 21:32:33,652 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:32:33,688 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:32:33,688 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:32:33,785 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:32:33,793 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:32:33,797 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:32:33,797 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:32:33,799 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:32:33,803 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:32:33,809 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:32:33,809 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:32:33,810 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:32:33,810 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:32:33,812 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:32:33,813 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:32:33,813 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:32:33,814 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:32:33,818 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:32:33,822 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:32:33,822 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:32:33,822 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:32:33,823 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:32:33,824 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 70 +2021-01-30 21:32:33,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:32:33,827 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:32:33,827 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:32:33,827 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:32:33,827 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:32:33,828 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:32:33,828 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:32:33,828 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:32:33,829 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:32:33,831 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:32:33,833 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-30 21:32:33,836 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-30 21:32:33,836 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-30 21:32:33,836 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-30 21:32:33,840 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-30 21:32:33,841 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-30 21:32:33,841 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-30 21:32:33,842 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-30 21:32:33,842 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:32:33,845 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-30 21:32:33,858 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-30 21:32:33,860 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 10.291 seconds (JVM running for 12.022) +2021-01-30 21:32:33,945 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-30 21:32:33,946 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-30 21:32:33,953 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-30 21:32:33,979 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:32:34,053 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-30 21:32:34,054 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-30 21:32:34,154 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,157 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:32:34,174 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:32:34,199 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-30 21:32:34,350 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-30 21:32:34,387 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:32:34,396 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,398 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,403 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,405 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,406 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,407 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,412 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,414 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,416 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,423 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,424 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:32:34,434 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:32:34,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-30 21:32:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:32:35,211 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:32:35,214 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:35,217 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:32:35,223 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:32:35,225 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:35,228 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:32:35,559 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:32:35,562 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:35,564 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:32:35,566 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:32:35,570 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:32:35,648 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:32:35,650 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:32:35,653 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:32:35,656 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:32:35,661 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:32:35], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:32:36,831 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-30 21:32:36,833 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [delete-0] +2021-01-30 21:32:36,833 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [delete-0] +2021-01-30 21:32:36,833 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-30 21:32:36,859 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 71 +2021-01-30 21:32:36,859 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 71 +2021-01-30 21:32:36,859 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 71 +2021-01-30 21:32:36,861 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-30 21:32:36,861 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-30 21:32:36,861 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-30 21:32:36,863 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-30 21:32:36,863 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-30 21:32:36,863 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-30 21:33:01,850 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:01,851 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,852 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:01,859 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:33:01,862 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,863 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:01,863 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:01,868 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:01,874 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,875 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:01,875 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:01,876 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:01,878 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,879 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,880 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:01,880 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:01,881 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,882 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:01,882 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:01,883 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:01,884 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:01,885 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:01,887 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:02,146 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:02,147 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:02,149 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:03,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-30 21:33:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:04,199 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:04,200 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,201 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:04,202 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:33:04,205 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,206 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,206 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,207 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:04,209 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,210 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,210 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,211 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:04,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,214 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,214 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,215 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,215 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,216 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,216 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,217 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,217 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,218 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,218 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,219 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,219 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,220 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,221 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,222 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,223 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,223 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,224 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,224 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,225 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,225 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,226 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:04,227 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,228 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,228 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,229 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:04,230 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:04,231 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,232 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,233 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,233 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:04,235 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,235 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,236 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,237 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:04,238 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,239 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,240 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,240 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:04,243 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,244 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,244 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,245 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,245 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:04,247 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,248 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:04,248 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:04,249 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:04,250 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:04,252 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:04,253 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:04,352 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:04,353 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,355 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:04,361 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:04,363 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:04,364 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:05,901 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:05,902 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,902 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:05,903 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:33:05,906 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:33:05,909 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,910 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,910 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,911 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,911 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,912 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,912 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,913 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,913 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,913 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,914 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,914 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,915 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,915 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,916 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,916 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,916 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,917 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,917 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:05,918 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:05,918 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:05,920 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:07,258 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:07,259 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,260 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:07,261 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-30 21:33:07,262 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,263 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,264 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,264 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:07,266 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,266 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,267 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,267 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:07,269 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,270 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,270 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,271 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,272 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,273 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,273 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,274 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,274 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,275 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,275 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,276 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,276 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,277 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,277 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,277 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,278 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,278 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,279 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,279 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,280 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,280 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,281 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,281 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:07,282 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,283 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,283 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,284 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:07,285 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:07,286 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,287 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,288 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,288 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:07,290 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,291 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,291 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,291 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:07,293 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,293 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,294 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,294 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:07,296 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,296 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:07,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:07,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-30 21:33:07,300 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-30 21:33:07,301 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-30 21:33:07,303 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:07,304 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:07,402 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:07,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-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,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-30 21:33:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:07,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-30 21:33:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:07,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-30 21:33:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:07,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-30 21:33:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:08,285 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,285 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:33:08,291 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,296 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,296 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:08,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-30 21:33:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:17,017 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:17,018 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,019 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:17,019 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-30 21:33:17,021 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-30 21:33:17,024 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,026 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,026 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,027 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,027 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,028 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,028 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,029 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,029 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,029 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,030 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,030 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,031 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,031 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,032 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,032 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,032 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,033 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-30 21:33:17,033 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-30 21:33:17,035 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-30 21:33:17,125 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:17,126 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,128 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-30 21:33:17,134 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-30 21:33:17,135 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-30 21:33:17,135 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[127.0.0.1], 在[2021-01-30 21:33:17], 访问了[com.greate.community.service.UserService.getAuthorities]. diff --git a/log/community/log_error.log b/log/community/log_error.log index fc2ed315..3f827c69 100644 --- a/log/community/log_error.log +++ b/log/community/log_error.log @@ -1,1058 +1,2993 @@ -2021-01-29 10:48:40,314 ERROR [restartedMain] o.s.b.SpringApplication [SpringApplication.java:858] Application run failed -org.springframework.context.ApplicationContextException: Failed to start bean 'org.springframework.kafka.config.internalKafkaListenerEndpointRegistry'; nested exception is org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:185) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:53) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:360) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:158) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:122) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:893) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.finishRefresh(ServletWebServerApplicationContext.java:163) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:552) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:142) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:775) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:316) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) - at com.greate.community.CommunityApplication.main(CommunityApplication.java:10) +2021-01-31 12:39:10,707 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{2kfUGEKuSwmHUhz9CP5Y0Q}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 12:41:08,648 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:java.util.ArrayList cannot be cast to java.lang.String +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.serializer.StringRedisSerializer.serialize(StringRedisSerializer.java:36) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKey(AbstractOperations.java:111) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:211) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:197) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultHyperLogLogOperations.union(DefaultHyperLogLogOperations.java:63) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService.calculateUV(DataService.java:61) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$FastClassBySpringCGLIB$$88ac44a4.invoke() +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 12:41:08,649 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$EnhancerBySpringCGLIB$$1f71b7d4.calculateUV() +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.DataController.getUV(DataController.java:43) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 12:41:08,650 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 12:41:08,651 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 12:41:08,652 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 12:41:08,653 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,654 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:08,655 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 12:41:08,656 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:08,657 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,658 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 12:41:08,658 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:08,658 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:08,658 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,659 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 12:41:08,659 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:08,659 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:08,659 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,659 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 12:41:08,659 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 12:41:08,660 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 12:41:08,661 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 12:41:08,662 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 12:41:08,662 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 12:41:08,662 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 12:41:53,857 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:java.util.ArrayList cannot be cast to java.lang.String +2021-01-31 12:41:53,857 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.serializer.StringRedisSerializer.serialize(StringRedisSerializer.java:36) +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKey(AbstractOperations.java:111) +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:211) +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:197) +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultHyperLogLogOperations.union(DefaultHyperLogLogOperations.java:63) +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService.calculateUV(DataService.java:61) +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$FastClassBySpringCGLIB$$88ac44a4.invoke() +2021-01-31 12:41:53,858 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 12:41:53,859 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$EnhancerBySpringCGLIB$$1f71b7d4.calculateUV() +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.DataController.getUV(DataController.java:43) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 12:41:53,860 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 12:41:53,861 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:53,862 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 12:41:53,863 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,864 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 12:41:53,865 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,865 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 12:41:53,865 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:53,865 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,865 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 12:41:53,865 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 12:41:53,866 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 12:41:53,867 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:53,867 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,867 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 12:41:53,867 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:53,867 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:53,867 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,868 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 12:41:53,868 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:53,868 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:53,868 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,868 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 12:41:53,868 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:53,869 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:53,869 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,869 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 12:41:53,869 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:41:53,869 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:41:53,869 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 12:41:53,870 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 12:41:53,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 12:41:53,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 12:43:41,255 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:java.util.ArrayList cannot be cast to java.lang.String +2021-01-31 12:43:41,256 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.serializer.StringRedisSerializer.serialize(StringRedisSerializer.java:36) +2021-01-31 12:43:41,256 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKey(AbstractOperations.java:111) +2021-01-31 12:43:41,256 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:211) +2021-01-31 12:43:41,256 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:197) +2021-01-31 12:43:41,256 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultHyperLogLogOperations.union(DefaultHyperLogLogOperations.java:63) +2021-01-31 12:43:41,256 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService.calculateUV(DataService.java:61) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$FastClassBySpringCGLIB$$88ac44a4.invoke() +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 12:43:41,257 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$EnhancerBySpringCGLIB$$1f71b7d4.calculateUV() +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.DataController.getUV(DataController.java:43) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 12:43:41,258 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 12:43:41,259 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,260 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 12:43:41,261 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 12:43:41,262 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,263 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:43:41,264 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:43:41,265 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:43:41,266 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 12:43:41,267 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 12:43:41,268 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 12:43:41,269 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 12:45:21,652 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{uYORaxjqRe6JGz_vX9Ss0A}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 12:46:47,276 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:java.util.ArrayList cannot be cast to java.lang.String +2021-01-31 12:46:47,276 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.serializer.StringRedisSerializer.serialize(StringRedisSerializer.java:36) +2021-01-31 12:46:47,276 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKey(AbstractOperations.java:111) +2021-01-31 12:46:47,276 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:211) +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:197) +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultHyperLogLogOperations.union(DefaultHyperLogLogOperations.java:63) +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService.calculateUV(DataService.java:61) +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$FastClassBySpringCGLIB$$88ac44a4.invoke() +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 12:46:47,277 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$EnhancerBySpringCGLIB$$891bdbfb.calculateUV() +2021-01-31 12:46:47,278 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.DataController.getUV(DataController.java:44) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 12:46:47,279 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 12:46:47,280 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,281 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,282 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,283 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:46:47,284 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 12:46:47,285 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 12:46:47,286 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 12:46:47,287 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 12:46:47,288 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 12:46:47,288 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 12:46:47,288 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 12:46:47,288 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 12:46:47,288 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 12:46:47,288 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 12:46:47,289 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 12:46:47,289 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 12:46:47,289 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 12:46:47,289 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 12:46:47,289 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 12:46:47,290 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 12:46:47,290 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 12:46:47,290 ERROR [http-nio-8080-exec-2] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 12:50:16,277 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{5tBWCFJJTCKtX5S6s4mcDQ}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 12:50:56,871 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:java.util.ArrayList cannot be cast to java.lang.String +2021-01-31 12:50:56,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.serializer.StringRedisSerializer.serialize(StringRedisSerializer.java:36) +2021-01-31 12:50:56,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKey(AbstractOperations.java:111) +2021-01-31 12:50:56,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:211) +2021-01-31 12:50:56,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.rawKeys(AbstractOperations.java:197) +2021-01-31 12:50:56,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultHyperLogLogOperations.union(DefaultHyperLogLogOperations.java:63) +2021-01-31 12:50:56,872 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService.calculateUV(DataService.java:61) +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$FastClassBySpringCGLIB$$88ac44a4.invoke() +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:50:56,873 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 12:50:56,874 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 12:50:56,874 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 12:50:56,874 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DataService$$EnhancerBySpringCGLIB$$66f2976a.calculateUV() +2021-01-31 12:50:56,874 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.DataController.getUV(DataController.java:44) +2021-01-31 12:50:56,874 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 12:50:56,874 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 12:50:56,875 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 12:50:56,876 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 12:50:56,876 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 12:50:56,876 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 12:50:56,876 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 12:50:56,876 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 12:50:56,876 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:50:56,877 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,878 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 12:50:56,879 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,879 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 12:50:56,879 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,879 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 12:50:56,879 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,879 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 12:50:56,880 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,880 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 12:50:56,880 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,880 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 12:50:56,880 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:50:56,880 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,881 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 12:50:56,881 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,881 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 12:50:56,881 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:50:56,882 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:50:56,883 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 12:50:56,884 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 12:50:56,885 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 12:50:56,886 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 12:50:56,887 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 12:50:56,887 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 12:50:56,887 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 12:53:38,591 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{f-u0BDQyTBisB6vCUFe02Q}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 12:54:46,060 ERROR [http-nio-8080-exec-10] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-10] Exception processing template "index": An error happened during template parsing (template: "class path resource [templates/index.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/index.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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) + at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) + at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) + at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) + at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) + at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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: "page.rows>0" (template: "index" - line 151, col 23) + 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) + ... 82 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "page.rows>0" (template: "index" - line 151, col 23) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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) + ... 84 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'rows' 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.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpGT.getValueInternal(OpGT.java:47) + at org.springframework.expression.spel.ast.OpGT.getValueInternal(OpGT.java:37) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + ... 105 common frames omitted +2021-01-31 12:54:46,063 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/index.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'rows' 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.access$000(PropertyOrFieldReference.java:51) + at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) + at org.springframework.expression.spel.ast.OpGT.getValueInternal(OpGT.java:47) + at org.springframework.expression.spel.ast.OpGT.getValueInternal(OpGT.java:37) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) + 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.expression.Expression.execute(Expression.java:125) + at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) + at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) + 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:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) + 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.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) + at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) + at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) + at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) + at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) + at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) + at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) + 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:99) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:92) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) + 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:200) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) + 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-31 12:59:35,340 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{RNWrDyOmQVCG_ZWPw13Cag}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 13:00:31,252 ERROR [http-nio-8080-exec-4] 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-31 13:00:31,252 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:132) +2021-01-31 13:00:31,252 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:126) +2021-01-31 13:00:31,253 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:167) +2021-01-31 13:00:31,253 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:134) +2021-01-31 13:00:31,253 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:104) +2021-01-31 13:00:31,253 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:892) +2021-01-31 13:00:31,253 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:797) +2021-01-31 13:00:31,253 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-31 13:00:31,253 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 13:00:31,254 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 13:00:31,254 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 13:00:31,254 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) +2021-01-31 13:00:31,254 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) +2021-01-31 13:00:31,254 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 13:00:31,254 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 13:00:31,255 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-31 13:00:31,255 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-31 13:00:31,255 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-31 13:00:31,255 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-31 13:00:31,255 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-31 13:00:31,255 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 13:00:31,255 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 13:00:31,255 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 13:00:31,256 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,257 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 13:00:31,258 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 13:00:31,259 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 13:00:31,259 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 13:00:31,259 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 13:00:31,259 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 13:00:31,259 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-31 13:00:31,259 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-31 13:00:31,259 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 13:00:31,259 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 13:00:31,260 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-31 13:00:31,260 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-31 13:00:31,260 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 13:00:31,260 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 13:00:31,260 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-31 13:00:31,260 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-31 13:00:31,260 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 13:00:31,261 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 13:00:31,261 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-31 13:00:31,261 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-31 13:00:31,261 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 13:00:31,261 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 13:00:31,261 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-31 13:00:31,261 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-31 13:00:31,262 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 13:00:31,262 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 13:00:31,262 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 13:00:31,262 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 13:00:31,262 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-31 13:00:31,262 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 13:00:31,262 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-31 13:00:31,262 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 13:00:31,263 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 13:00:31,263 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 13:00:31,263 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:1747) +2021-01-31 13:00:31,263 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-31 13:00:31,263 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-31 13:00:31,263 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-31 13:00:31,264 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-31 13:00:31,264 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 13:04:15,662 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 13:05:22,418 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 7, CreateTime = 1612069522369, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":277,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) -Caused by: org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata -2021-01-29 10:52:05,430 ERROR [http-nio-8080-exec-10] 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-29 10:52:05,430 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1111) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1084) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:866) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:341) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:132) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:95) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:82) -2021-01-29 10:52:05,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:211) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultValueOperations.set(DefaultValueOperations.java:256) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LoginController.getKaptcha(LoginController.java:138) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-29 10:52:05,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-29 10:52:05,433 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-29 10:52:05,433 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) -2021-01-29 10:52:05,433 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) -2021-01-29 10:52:05,433 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:104) -2021-01-29 10:52:05,433 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:892) -2021-01-29 10:52:05,433 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:797) -2021-01-29 10:52:05,434 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-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) -2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) -2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) -2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) -2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) -2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) -2021-01-29 10:52:05,434 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) -2021-01-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 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-29 10:52:05,435 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) -2021-01-29 10:52:05,435 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 10:52:05,436 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-29 10:52:05,436 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-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) -2021-01-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 10:52:05,436 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-29 10:52:05,436 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-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) -2021-01-29 10:52:05,436 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 10:52:05,437 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-29 10:52:05,437 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-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) -2021-01-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 10:52:05,437 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-29 10:52:05,437 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-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) -2021-01-29 10:52:05,437 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) -2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) -2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) -2021-01-29 10:52:05,438 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-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) -2021-01-29 10:52:05,438 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-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) -2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) -2021-01-29 10:52:05,438 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) -2021-01-29 10:52:05,439 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:1747) -2021-01-29 10:52:05,439 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-29 10:52:05,439 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-29 10:52:05,439 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-29 10:52:05,439 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-29 10:52:05,439 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-29 10:53:06,928 ERROR [http-nio-8080-exec-6] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-6] 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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 org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$5f715ef1.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 13:05:22,821 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 8, CreateTime = 1612069522816, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":277,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - 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) - ... 52 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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) - ... 54 common frames omitted -Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - ... 75 common frames omitted -2021-01-29 10:53:06,930 ERROR [http-nio-8080-exec-6] 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.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{XE1FMyQfQr6TmPRffi4x4w}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$5f715ef1.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:00:10,323 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 17:00:32,281 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 9, CreateTime = 1612083632231, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":288,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -2021-01-29 10:57:01,445 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:00:38,664 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 10, CreateTime = 1612083638657, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":289,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - 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) - ... 52 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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) - ... 54 common frames omitted -Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - ... 75 common frames omitted -2021-01-29 10:57:01,446 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/notice.html]")] with root cause -org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:00:44,676 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 11, CreateTime = 1612083644671, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":290,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -2021-01-29 10:57:31,807 ERROR [http-nio-8080-exec-8] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-8] 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:00:55,998 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount +2021-01-31 17:00:55,998 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:115) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:102) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.sun.proxy.$Proxy100.updateCommentCount(Unknown Source) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce.updateCommentCount(DiscussPostSerivce.java:84) +2021-01-31 17:00:55,999 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$FastClassBySpringCGLIB$$3779fed6.invoke() +2021-01-31 17:00:56,000 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-31 17:00:56,000 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:00:56,000 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-31 17:00:56,000 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:00:56,000 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-31 17:00:56,000 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:00:56,000 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-31 17:00:56,001 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:00:56,001 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$EnhancerBySpringCGLIB$$65ed9f59.updateCommentCount() +2021-01-31 17:00:56,001 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService.addComment(CommentService.java:85) +2021-01-31 17:00:56,001 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() +2021-01-31 17:00:56,001 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-31 17:00:56,001 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:00:56,001 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-31 17:00:56,001 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:00:56,002 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-31 17:00:56,002 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295) +2021-01-31 17:00:56,002 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98) +2021-01-31 17:00:56,002 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-31 17:00:56,002 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:00:56,002 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-31 17:00:56,002 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$55a8311e.addComment() +2021-01-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.CommentController.addComment(CommentController.java:56) +2021-01-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:00:56,003 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-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:00:56,003 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:00:56,004 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:104) +2021-01-31 17:00:56,004 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:892) +2021-01-31 17:00:56,004 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:797) +2021-01-31 17:00:56,004 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-31 17:00:56,004 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:00:56,004 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:00:56,004 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:00:56,004 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 17:00:56,005 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 17:00:56,005 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:00:56,005 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:00:56,005 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-31 17:00:56,005 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-31 17:00:56,005 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-31 17:00:56,005 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-31 17:00:56,005 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-31 17:00:56,005 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,006 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:00:56,007 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:00:56,008 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:00:56,009 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:00:56,009 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:00:56,009 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:00:56,009 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:00:56,009 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-31 17:00:56,009 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-31 17:00:56,010 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:00:56,010 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:00:56,010 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-31 17:00:56,010 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-31 17:00:56,010 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:00:56,010 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:00:56,011 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-31 17:00:56,011 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-31 17:00:56,011 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:00:56,011 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:00:56,011 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-31 17:00:56,011 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-31 17:00:56,011 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:00:56,011 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:00:56,012 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-31 17:00:56,012 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-31 17:00:56,012 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:00:56,012 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:00:56,012 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:00:56,012 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:00:56,012 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-31 17:00:56,012 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:00:56,013 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-31 17:00:56,013 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:00:56,013 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:00:56,013 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:00:56,013 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:1747) +2021-01-31 17:00:56,013 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-31 17:00:56,013 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-31 17:00:56,013 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-31 17:00:56,014 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-31 17:00:56,014 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:02:14,730 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53) +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:115) +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:102) +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) +2021-01-31 17:02:14,731 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.sun.proxy.$Proxy100.updateCommentCount(Unknown Source) +2021-01-31 17:02:14,732 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce.updateCommentCount(DiscussPostSerivce.java:84) +2021-01-31 17:02:14,732 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$FastClassBySpringCGLIB$$3779fed6.invoke() +2021-01-31 17:02:14,732 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-31 17:02:14,732 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:02:14,732 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-31 17:02:14,732 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:02:14,732 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-31 17:02:14,732 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:02:14,733 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-31 17:02:14,733 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:02:14,733 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$EnhancerBySpringCGLIB$$65ed9f59.updateCommentCount() +2021-01-31 17:02:14,733 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService.addComment(CommentService.java:85) +2021-01-31 17:02:14,733 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() +2021-01-31 17:02:14,733 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-31 17:02:14,733 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:02:14,733 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-31 17:02:14,734 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:02:14,734 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-31 17:02:14,734 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295) +2021-01-31 17:02:14,734 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98) +2021-01-31 17:02:14,734 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-31 17:02:14,734 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:02:14,734 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-31 17:02:14,735 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:02:14,735 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$55a8311e.addComment() +2021-01-31 17:02:14,735 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.CommentController.addComment(CommentController.java:56) +2021-01-31 17:02:14,735 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:02:14,735 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:02:14,736 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:02:14,736 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-31 17:02:14,736 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:02:14,736 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:02:14,736 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:104) +2021-01-31 17:02:14,736 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:892) +2021-01-31 17:02:14,737 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:797) +2021-01-31 17:02:14,737 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-31 17:02:14,737 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:02:14,737 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:02:14,737 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:02:14,737 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 17:02:14,737 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 17:02:14,738 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:02:14,738 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:02:14,738 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-31 17:02:14,738 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-31 17:02:14,738 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-31 17:02:14,738 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-31 17:02:14,738 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-31 17:02:14,738 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,739 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,740 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:02:14,741 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:02:14,742 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:02:14,742 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:02:14,742 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:02:14,742 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-31 17:02:14,742 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-31 17:02:14,742 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:02:14,742 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:02:14,742 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-31 17:02:14,743 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-31 17:02:14,743 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:02:14,743 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:02:14,743 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-31 17:02:14,743 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-31 17:02:14,743 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:02:14,743 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:02:14,743 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-31 17:02:14,744 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-31 17:02:14,744 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:02:14,744 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:02:14,744 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-31 17:02:14,744 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-31 17:02:14,744 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:02:14,744 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:02:14,744 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:02:14,745 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:02:14,745 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-31 17:02:14,745 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:02:14,745 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-31 17:02:14,745 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:02:14,745 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:02:14,745 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:02:14,745 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:1747) +2021-01-31 17:02:14,746 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-31 17:02:14,746 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-31 17:02:14,746 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-31 17:02:14,746 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-31 17:02:14,746 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:03:10,067 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53) +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:115) +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:102) +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) +2021-01-31 17:03:10,068 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.sun.proxy.$Proxy100.updateCommentCount(Unknown Source) +2021-01-31 17:03:10,069 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce.updateCommentCount(DiscussPostSerivce.java:84) +2021-01-31 17:03:10,069 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$FastClassBySpringCGLIB$$3779fed6.invoke() +2021-01-31 17:03:10,069 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-31 17:03:10,069 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:03:10,069 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-31 17:03:10,069 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:03:10,069 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-31 17:03:10,069 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:03:10,070 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-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$EnhancerBySpringCGLIB$$65ed9f59.updateCommentCount() +2021-01-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService.addComment(CommentService.java:85) +2021-01-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() +2021-01-31 17:03:10,070 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-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:03:10,070 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-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:03:10,070 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-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295) +2021-01-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98) +2021-01-31 17:03:10,070 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-31 17:03:10,070 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:03:10,070 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-31 17:03:10,072 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:03:10,072 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$55a8311e.addComment() +2021-01-31 17:03:10,072 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.CommentController.addComment(CommentController.java:56) +2021-01-31 17:03:10,072 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:03:10,072 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:03:10,072 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:03:10,072 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-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:03:10,073 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:104) +2021-01-31 17:03:10,073 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:892) +2021-01-31 17:03:10,073 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:797) +2021-01-31 17:03:10,073 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-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 17:03:10,073 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 17:03:10,074 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:03:10,074 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:03:10,074 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-31 17:03:10,074 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-31 17:03:10,074 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-31 17:03:10,074 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-31 17:03:10,075 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-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,075 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,076 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:03:10,077 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:10,078 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:10,078 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:03:10,078 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:03:10,078 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:03:10,078 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:03:10,078 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-31 17:03:10,078 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-31 17:03:10,079 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:03:10,079 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:10,079 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-31 17:03:10,079 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-31 17:03:10,079 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:03:10,079 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:10,079 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-31 17:03:10,079 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-31 17:03:10,080 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:03:10,080 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:10,080 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-31 17:03:10,080 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-31 17:03:10,080 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:03:10,080 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:10,080 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-31 17:03:10,080 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-31 17:03:10,081 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:03:10,081 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:03:10,081 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:03:10,081 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:03:10,081 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-31 17:03:10,081 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:03:10,081 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-31 17:03:10,081 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:03:10,082 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:03:10,082 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:03:10,082 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:1747) +2021-01-31 17:03:10,082 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-31 17:03:10,082 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-31 17:03:10,082 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-31 17:03:10,082 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-31 17:03:10,082 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:03:20,416 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount +2021-01-31 17:03:20,417 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) +2021-01-31 17:03:20,417 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53) +2021-01-31 17:03:20,417 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:115) +2021-01-31 17:03:20,417 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) +2021-01-31 17:03:20,417 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:102) +2021-01-31 17:03:20,418 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) +2021-01-31 17:03:20,418 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.sun.proxy.$Proxy100.updateCommentCount(Unknown Source) +2021-01-31 17:03:20,418 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce.updateCommentCount(DiscussPostSerivce.java:84) +2021-01-31 17:03:20,418 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$FastClassBySpringCGLIB$$3779fed6.invoke() +2021-01-31 17:03:20,418 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:03:20,418 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$EnhancerBySpringCGLIB$$65ed9f59.updateCommentCount() +2021-01-31 17:03:20,419 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService.addComment(CommentService.java:85) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295) +2021-01-31 17:03:20,420 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$55a8311e.addComment() +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.CommentController.addComment(CommentController.java:56) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:03:20,421 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:03:20,422 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:03:20,422 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 17:03:20,422 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:03:20,422 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:03:20,422 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:104) +2021-01-31 17:03:20,422 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:892) +2021-01-31 17:03:20,422 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:797) +2021-01-31 17:03:20,422 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-31 17:03:20,423 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:03:20,423 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:03:20,423 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:03:20,423 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 17:03:20,423 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 17:03:20,423 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:03:20,424 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:03:20,424 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-31 17:03:20,424 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-31 17:03:20,424 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-31 17:03:20,424 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-31 17:03:20,424 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-31 17:03:20,424 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:03:20,424 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:03:20,425 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:03:20,425 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,425 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:03:20,425 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,425 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:03:20,425 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:03:20,426 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:20,427 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:03:20,428 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:03:20,428 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:03:20,428 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:03:20,428 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:03:20,428 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-31 17:03:20,428 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-31 17:03:20,428 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:03:20,428 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:20,429 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-31 17:03:20,429 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-31 17:03:20,429 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:03:20,429 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:20,429 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-31 17:03:20,429 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-31 17:03:20,429 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:03:20,429 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:20,430 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-31 17:03:20,430 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-31 17:03:20,430 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:03:20,430 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:03:20,430 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-31 17:03:20,430 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-31 17:03:20,430 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:03:20,430 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:03:20,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:03:20,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:03:20,431 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-31 17:03:20,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:03:20,431 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-31 17:03:20,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:03:20,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:03:20,431 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:03:20,432 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:1747) +2021-01-31 17:03:20,432 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-31 17:03:20,432 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-31 17:03:20,432 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-31 17:03:20,432 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-31 17:03:20,432 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:03:54,297 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 12, CreateTime = 1612083834293, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":288,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - 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) - ... 52 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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) - ... 54 common frames omitted -Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - ... 75 common frames omitted -2021-01-29 10:57:31,808 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/notice.html]")] with root cause -org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:04:14,623 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 13, CreateTime = 1612083854619, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":288,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -2021-01-29 10:59:17,664 ERROR [http-nio-8080-exec-7] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-7] 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:05:10,388 ERROR [communityScheduler_Worker-2] o.q.c.JobRunShell [JobRunShell.java:211] Job communityJobGroup.postScoreRefreshJob threw an unhandled Exception: +org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +2021-01-31 17:05:10,389 ERROR [communityScheduler_Worker-2] o.q.c.ErrorLogger [QuartzScheduler.java:2407] Job (communityJobGroup.postScoreRefreshJob threw an exception. +org.quartz.SchedulerException: Job threw an unhandled exception. + at org.quartz.core.JobRunShell.run(JobRunShell.java:213) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{O49I_X6eRTmuRdbEKOWHZg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$c2174f94.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + ... 1 common frames omitted +2021-01-31 17:06:14,676 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{rxtS66OnR6GeNXUCwDfKtA}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 17:07:07,408 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount +2021-01-31 17:07:07,409 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) +2021-01-31 17:07:07,409 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53) +2021-01-31 17:07:07,409 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:115) +2021-01-31 17:07:07,409 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) +2021-01-31 17:07:07,410 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:102) +2021-01-31 17:07:07,410 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) +2021-01-31 17:07:07,410 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.sun.proxy.$Proxy100.updateCommentCount(Unknown Source) +2021-01-31 17:07:07,410 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce.updateCommentCount(DiscussPostSerivce.java:84) +2021-01-31 17:07:07,410 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$FastClassBySpringCGLIB$$3779fed6.invoke() +2021-01-31 17:07:07,410 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:07:07,411 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$EnhancerBySpringCGLIB$$8c7cc2b2.updateCommentCount() +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService.addComment(CommentService.java:85) +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:07:07,412 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:07:07,413 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$9d2f39b8.addComment() +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.CommentController.addComment(CommentController.java:56) +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:07:07,414 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:07:07,415 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 17:07:07,415 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 17:07:07,415 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 17:07:07,415 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 17:07:07,415 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:07:07,415 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:07:07,416 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:07:07,416 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 17:07:07,416 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 17:07:07,416 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:07:07,416 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:07:07,416 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:07:07,417 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:07:07,418 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,418 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:07:07,418 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,418 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:07:07,418 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,418 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,419 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:07:07,420 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:07:07,421 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:07:07,422 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:07:07,423 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:07:07,424 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:07:07,425 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 17:07:07,425 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 17:07:07,425 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 17:07:07,425 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 17:07:07,425 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 17:07:07,425 ERROR [http-nio-8080-exec-5] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:09:49,003 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount +2021-01-31 17:09:49,004 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) +2021-01-31 17:09:49,004 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53) +2021-01-31 17:09:49,004 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:115) +2021-01-31 17:09:49,004 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) +2021-01-31 17:09:49,004 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:102) +2021-01-31 17:09:49,004 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.sun.proxy.$Proxy100.updateCommentCount(Unknown Source) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce.updateCommentCount(DiscussPostSerivce.java:84) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$FastClassBySpringCGLIB$$3779fed6.invoke() +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:09:49,005 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.DiscussPostSerivce$$EnhancerBySpringCGLIB$$8c7cc2b2.updateCommentCount() +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService.addComment(CommentService.java:85) +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:09:49,006 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:09:49,007 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$9d2f39b8.addComment() +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.CommentController.addComment(CommentController.java:56) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:09:49,008 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:09:49,009 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:660) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,010 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,011 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:09:49,012 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,013 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:09:49,013 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,013 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:09:49,013 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,013 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:09:49,013 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:09:49,014 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:09:49,015 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:09:49,016 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:09:49,017 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:09:49,018 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) +2021-01-31 17:09:49,019 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-31 17:09:49,019 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-31 17:09:49,019 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-31 17:09:49,019 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-31 17:09:49,019 ERROR [http-nio-8080-exec-8] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:10:10,420 ERROR [communityScheduler_Worker-1] o.q.c.JobRunShell [JobRunShell.java:211] Job communityJobGroup.postScoreRefreshJob threw an unhandled Exception: +org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{rxtS66OnR6GeNXUCwDfKtA}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$e8a672ed.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +2021-01-31 17:10:10,420 ERROR [communityScheduler_Worker-1] o.q.c.ErrorLogger [QuartzScheduler.java:2407] Job (communityJobGroup.postScoreRefreshJob threw an exception. +org.quartz.SchedulerException: Job threw an unhandled exception. + at org.quartz.core.JobRunShell.run(JobRunShell.java:213) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{rxtS66OnR6GeNXUCwDfKtA}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$e8a672ed.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + ... 1 common frames omitted +2021-01-31 17:12:33,995 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{khtVULl9T2qSb6CrSHsTbw}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 17:12:50,420 ERROR [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.LoggingErrorHandler [LoggingErrorHandler.java:37] Error while processing: ConsumerRecord(topic = publish, partition = 0, offset = 14, CreateTime = 1612084370384, serialized key size = -1, serialized value size = 88, headers = RecordHeaders(headers = [], isReadOnly = false), key = null, value = {"data":{},"entityId":288,"entityType":1,"entityUserId":0,"topic":"publish","userId":21}) +org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method 'public void com.greate.community.event.EventConsumer.handlePublishMessage(org.apache.kafka.clients.consumer.ConsumerRecord)' threw exception; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{khtVULl9T2qSb6CrSHsTbw}{127.0.0.1}{127.0.0.1:9300}]]; nested exception is NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{khtVULl9T2qSb6CrSHsTbw}{127.0.0.1}{127.0.0.1:9300}]] + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.decorateException(KafkaMessageListenerContainer.java:1311) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeErrorHandler(KafkaMessageListenerContainer.java:1300) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1227) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeWithRecords(KafkaMessageListenerContainer.java:1198) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeRecordListener(KafkaMessageListenerContainer.java:1118) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeListener(KafkaMessageListenerContainer.java:933) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.pollAndInvoke(KafkaMessageListenerContainer.java:749) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.run(KafkaMessageListenerContainer.java:698) + at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) + at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.lang.Thread.run(Thread.java:748) -Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - 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) - ... 52 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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) - ... 54 common frames omitted -Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - ... 75 common frames omitted -2021-01-29 10:59:17,664 ERROR [http-nio-8080-exec-7] 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.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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-29 11:00:21,588 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - 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) - ... 52 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "followNotice.message!=null" (template: "/site/notice" - line 87, col 71) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:290) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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) - ... 54 common frames omitted -Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - ... 75 common frames omitted -2021-01-29 11:00:21,589 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/notice.html]")] with root cause -org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'message' cannot be found on object of type 'java.util.HashMap' - maybe not public or not valid? - at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:217) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) - at org.springframework.expression.spel.ast.PropertyOrFieldReference.access$000(PropertyOrFieldReference.java:51) - at org.springframework.expression.spel.ast.PropertyOrFieldReference$AccessorLValue.getValue(PropertyOrFieldReference.java:406) - at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:90) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:43) - at org.springframework.expression.spel.ast.OpNE.getValueInternal(OpNE.java:33) - at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:109) - at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:328) - at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:263) - 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.expression.Expression.execute(Expression.java:125) - at org.thymeleaf.standard.processor.StandardIfTagProcessor.isVisible(StandardIfTagProcessor.java:59) - at org.thymeleaf.standard.processor.AbstractStandardConditionalVisibilityTagProcessor.doProcess(AbstractStandardConditionalVisibilityTagProcessor.java:61) - 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:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1371) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1117) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) - 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:99) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:92) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) - 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:200) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1747) - 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-29 11:04:09,387 ERROR [http-nio-8080-exec-3] 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-29 11:04:09,387 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:132) -2021-01-29 11:04:09,387 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:126) -2021-01-29 11:04:09,387 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:167) -2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:134) -2021-01-29 11:04:09,388 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:104) -2021-01-29 11:04:09,388 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:892) -2021-01-29 11:04:09,388 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:797) -2021-01-29 11:04:09,388 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-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) -2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) -2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) -2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) -2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) -2021-01-29 11:04:09,388 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) -2021-01-29 11:04:09,389 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) -2021-01-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,389 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) -2021-01-29 11:04:09,389 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 11:04:09,389 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-29 11:04:09,389 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-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) -2021-01-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 11:04:09,390 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-29 11:04:09,390 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-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) -2021-01-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 11:04:09,390 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-29 11:04:09,390 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-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) -2021-01-29 11:04:09,390 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) -2021-01-29 11:04:09,391 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-29 11:04:09,391 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-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) -2021-01-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) -2021-01-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) -2021-01-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) -2021-01-29 11:04:09,391 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-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) -2021-01-29 11:04:09,391 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-29 11:04:09,391 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) -2021-01-29 11:04:09,392 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) -2021-01-29 11:04:09,392 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) -2021-01-29 11:04:09,392 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:1747) -2021-01-29 11:04:09,392 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-29 11:04:09,392 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-29 11:04:09,392 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-29 11:04:09,392 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-29 11:04:09,392 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{khtVULl9T2qSb6CrSHsTbw}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$31a50256.saveDiscusspost() + at com.greate.community.event.EventConsumer.handlePublishMessage(EventConsumer.java:94) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:171) + at org.springframework.messaging.handler.invocation.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:120) + at org.springframework.kafka.listener.adapter.HandlerAdapter.invoke(HandlerAdapter.java:48) + at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.invokeHandler(MessagingMessageListenerAdapter.java:283) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:79) + at org.springframework.kafka.listener.adapter.RecordMessagingMessageListenerAdapter.onMessage(RecordMessagingMessageListenerAdapter.java:50) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeOnMessage(KafkaMessageListenerContainer.java:1263) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.invokeOnMessage(KafkaMessageListenerContainer.java:1256) + at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.doInvokeRecordListener(KafkaMessageListenerContainer.java:1217) + ... 8 common frames omitted +2021-01-31 17:15:10,395 ERROR [communityScheduler_Worker-1] o.q.c.JobRunShell [JobRunShell.java:211] Job communityJobGroup.postScoreRefreshJob threw an unhandled Exception: +org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{khtVULl9T2qSb6CrSHsTbw}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$31a50256.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +2021-01-31 17:15:10,396 ERROR [communityScheduler_Worker-1] o.q.c.ErrorLogger [QuartzScheduler.java:2407] Job (communityJobGroup.postScoreRefreshJob threw an exception. +org.quartz.SchedulerException: Job threw an unhandled exception. + at org.quartz.core.JobRunShell.run(JobRunShell.java:213) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{khtVULl9T2qSb6CrSHsTbw}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$31a50256.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + ... 1 common frames omitted +2021-01-31 17:18:59,824 ERROR [restartedMain] o.s.d.e.r.s.AbstractElasticsearchRepository [AbstractElasticsearchRepository.java:91] failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 17:20:10,443 ERROR [communityScheduler_Worker-1] o.q.c.JobRunShell [JobRunShell.java:211] Job communityJobGroup.postScoreRefreshJob threw an unhandled Exception: +org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$ea868d76.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +2021-01-31 17:20:10,443 ERROR [communityScheduler_Worker-1] o.q.c.ErrorLogger [QuartzScheduler.java:2407] Job (communityJobGroup.postScoreRefreshJob threw an exception. +org.quartz.SchedulerException: Job threw an unhandled exception. + at org.quartz.core.JobRunShell.run(JobRunShell.java:213) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$ea868d76.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + ... 1 common frames omitted +2021-01-31 17:25:10,389 ERROR [communityScheduler_Worker-2] o.q.c.JobRunShell [JobRunShell.java:211] Job communityJobGroup.postScoreRefreshJob threw an unhandled Exception: +org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$ea868d76.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +2021-01-31 17:25:10,390 ERROR [communityScheduler_Worker-2] o.q.c.ErrorLogger [QuartzScheduler.java:2407] Job (communityJobGroup.postScoreRefreshJob threw an exception. +org.quartz.SchedulerException: Job threw an unhandled exception. + at org.quartz.core.JobRunShell.run(JobRunShell.java:213) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +Caused by: org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] + at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) + at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) + at org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) + at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) + at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) + at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) + at org.springframework.data.elasticsearch.core.ElasticsearchTemplate.index(ElasticsearchTemplate.java:577) + at org.springframework.data.elasticsearch.repository.support.AbstractElasticsearchRepository.save(AbstractElasticsearchRepository.java:156) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:359) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:200) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:644) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:608) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.lambda$invoke$3(RepositoryFactorySupport.java:595) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:595) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor.invoke(SurroundingTransactionDetectorMethodInterceptor.java:61) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy112.save(Unknown Source) + at com.greate.community.service.ElasticsearchService.saveDiscusspost(ElasticsearchService.java:46) + at com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) + at com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$ea868d76.saveDiscusspost() + at com.greate.community.quartz.PostScoreRefreshJob.refresh(PostScoreRefreshJob.java:99) + at com.greate.community.quartz.PostScoreRefreshJob.execute(PostScoreRefreshJob.java:66) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + ... 1 common frames omitted +2021-01-31 17:26:47,297 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 17:26:47,298 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) +2021-01-31 17:26:47,298 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) +2021-01-31 17:26:47,298 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) +2021-01-31 17:26:47,298 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) +2021-01-31 17:26:47,298 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.elasticsearch.core.ElasticsearchTemplate.getSearchResponse(ElasticsearchTemplate.java:940) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.elasticsearch.core.ElasticsearchTemplate.doSearch(ElasticsearchTemplate.java:931) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.elasticsearch.core.ElasticsearchTemplate.queryForPage(ElasticsearchTemplate.java:314) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.ElasticsearchService.searchDiscussPost(ElasticsearchService.java:76) +2021-01-31 17:26:47,299 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:26:47,300 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$ea868d76.searchDiscussPost() +2021-01-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.SearchController.search(SearchController.java:40) +2021-01-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:26:47,301 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-31 17:26:47,301 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:26:47,302 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:26:47,302 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:104) +2021-01-31 17:26:47,302 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:892) +2021-01-31 17:26:47,302 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:797) +2021-01-31 17:26:47,302 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-31 17:26:47,302 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:26:47,302 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:26:47,302 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:26:47,303 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) +2021-01-31 17:26:47,303 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) +2021-01-31 17:26:47,303 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:26:47,303 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:26:47,303 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-31 17:26:47,303 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-31 17:26:47,303 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-31 17:26:47,303 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-31 17:26:47,304 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-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,304 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,305 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,306 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:26:47,307 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:47,307 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:47,307 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:26:47,307 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:26:47,307 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:26:47,307 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:26:47,307 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-31 17:26:47,307 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-31 17:26:47,308 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:26:47,308 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:47,308 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-31 17:26:47,308 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-31 17:26:47,308 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:26:47,308 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:47,309 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-31 17:26:47,309 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-31 17:26:47,309 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:26:47,309 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:47,309 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-31 17:26:47,309 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-31 17:26:47,310 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:26:47,310 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:47,310 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-31 17:26:47,310 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-31 17:26:47,310 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:26:47,310 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:26:47,310 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:26:47,310 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:26:47,311 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-31 17:26:47,311 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:26:47,311 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-31 17:26:47,311 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:26:47,311 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:26:47,311 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:26:47,311 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:1747) +2021-01-31 17:26:47,311 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-31 17:26:47,312 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-31 17:26:47,312 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-31 17:26:47,312 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-31 17:26:47,312 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-31 17:26:52,617 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}] +2021-01-31 17:26:52,617 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:349) +2021-01-31 17:26:52,617 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:247) +2021-01-31 17:26:52,617 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportProxyClient.execute(TransportProxyClient.java:60) +2021-01-31 17:26:52,617 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:381) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:407) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:396) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:46) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.elasticsearch.core.ElasticsearchTemplate.getSearchResponse(ElasticsearchTemplate.java:940) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.elasticsearch.core.ElasticsearchTemplate.doSearch(ElasticsearchTemplate.java:931) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.elasticsearch.core.ElasticsearchTemplate.queryForPage(ElasticsearchTemplate.java:314) +2021-01-31 17:26:52,618 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.ElasticsearchService.searchDiscussPost(ElasticsearchService.java:76) +2021-01-31 17:26:52,619 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.ElasticsearchService$$FastClassBySpringCGLIB$$434a3a5f.invoke() +2021-01-31 17:26:52,619 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-31 17:26:52,619 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749) +2021-01-31 17:26:52,619 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-31 17:26:52,619 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56) +2021-01-31 17:26:52,619 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-31 17:26:52,619 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93) +2021-01-31 17:26:52,619 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-31 17:26:52,620 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688) +2021-01-31 17:26:52,620 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.ElasticsearchService$$EnhancerBySpringCGLIB$$ea868d76.searchDiscussPost() +2021-01-31 17:26:52,620 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.SearchController.search(SearchController.java:40) +2021-01-31 17:26:52,620 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-31 17:26:52,620 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-31 17:26:52,620 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-31 17:26:52,620 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-31 17:26:52,621 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) +2021-01-31 17:26:52,621 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) +2021-01-31 17:26:52,621 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:104) +2021-01-31 17:26:52,621 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:892) +2021-01-31 17:26:52,621 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:797) +2021-01-31 17:26:52,621 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-31 17:26:52,621 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) +2021-01-31 17:26:52,621 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) +2021-01-31 17:26:52,622 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) +2021-01-31 17:26:52,622 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) +2021-01-31 17:26:52,622 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:634) +2021-01-31 17:26:52,622 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) +2021-01-31 17:26:52,622 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:741) +2021-01-31 17:26:52,622 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-31 17:26:52,622 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-31 17:26:52,622 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-31 17:26:52,623 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-31 17:26:52,623 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-31 17:26:52,623 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) +2021-01-31 17:26:52,623 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) +2021-01-31 17:26:52,623 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) +2021-01-31 17:26:52,623 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,623 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,624 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) +2021-01-31 17:26:52,625 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357) +2021-01-31 17:26:52,626 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270) +2021-01-31 17:26:52,627 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-31 17:26:52,627 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-31 17:26:52,627 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) +2021-01-31 17:26:52,627 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:52,627 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-31 17:26:52,627 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-31 17:26:52,627 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) +2021-01-31 17:26:52,627 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:52,628 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-31 17:26:52,628 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-31 17:26:52,628 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) +2021-01-31 17:26:52,628 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:52,628 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-31 17:26:52,628 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-31 17:26:52,628 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) +2021-01-31 17:26:52,629 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) +2021-01-31 17:26:52,629 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-31 17:26:52,629 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-31 17:26:52,629 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) +2021-01-31 17:26:52,629 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) +2021-01-31 17:26:52,629 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) +2021-01-31 17:26:52,629 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) +2021-01-31 17:26:52,630 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-31 17:26:52,630 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) +2021-01-31 17:26:52,630 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-31 17:26:52,630 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) +2021-01-31 17:26:52,630 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) +2021-01-31 17:26:52,631 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:836) +2021-01-31 17:26:52,631 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:1747) +2021-01-31 17:26:52,631 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-31 17:26:52,631 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-31 17:26:52,631 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-31 17:26:52,631 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-31 17:26:52,631 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) diff --git a/log/community/log_info.log b/log/community/log_info.log index fe0a8fd2..4346d5a0 100644 --- a/log/community/log_info.log +++ b/log/community/log_info.log @@ -1,37 +1,63 @@ -2021-01-29 10:47:36,094 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 24236 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-29 10:47:36,105 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 10:47:36,162 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-29 10:47:36,162 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-29 10:47:37,002 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 10:47:37,002 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 10:47:37,023 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. -2021-01-29 10:47:37,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 10:47:37,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 10:47:37,044 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 1ms. Found 0 repository interfaces. -2021-01-29 10:47:37,293 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 10:47:37,340 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 10:47:37,341 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-29 10:47:37,341 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-29 10:47:37,342 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 10:47:37,343 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 10:47:37,365 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-29 10:47:37,390 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$f9dad13f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 10:47:37,434 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2628bfbc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 10:47:37,582 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-29 10:47:37,582 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-29 10:47:37,962 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) -2021-01-29 10:47:37,973 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-29 10:47:37,983 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-29 10:47:37,983 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] -2021-01-29 10:47:38,103 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-29 10:47:38,103 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1941 ms -2021-01-29 10:47:39,149 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 10:47:39,258 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 10:47:40,122 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 -2021-01-29 10:47:40,164 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 12:37:04,140 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 16724 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 12:37:04,145 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 12:37:04,182 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 12:37:04,183 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 12:37:04,878 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:37:04,880 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:37:04,932 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 49ms. Found 1 repository interfaces. +2021-01-31 12:37:04,941 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:37:04,942 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:37:04,956 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 12:37:04,956 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 6ms. Found 0 repository interfaces. +2021-01-31 12:37:05,202 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 12:39:02,593 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 12016 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 12:39:02,597 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 12:39:02,654 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 12:39:02,655 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 12:39:03,457 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:39:03,458 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:39:03,518 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 55ms. Found 1 repository interfaces. +2021-01-31 12:39:03,528 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:39:03,529 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:39:03,545 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 12:39:03,545 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 9ms. Found 0 repository interfaces. +2021-01-31 12:39:03,853 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 12:39:03,908 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 12:39:03,909 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:39:03,909 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:39:03,909 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:39:03,910 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 12:39:03,910 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:39:03,910 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:39:03,910 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:39:03,932 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-31 12:39:03,956 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$1115f1af] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:39:04,000 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$3d63e02c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:39:04,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-31 12:39:04,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-31 12:39:04,644 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 12:39:04,661 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 12:39:04,673 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 12:39:04,673 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 12:39:04,824 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 12:39:04,825 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2133 ms +2021-01-31 12:39:06,188 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 12:39:06,189 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 12:39:06,190 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 12:39:06,190 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 12:39:06,190 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 12:39:06,190 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 12:39:07,695 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 12:39:10,688 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 12:39:11,000 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 12:39:11,156 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 12:39:11,900 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 8797c059-d256-4410-9346-1c529447675f + +2021-01-31 12:39:11,959 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 12:39:11,998 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6d72c7cc, org.springframework.security.web.context.SecurityContextPersistenceFilter@36e5a89a, org.springframework.security.web.header.HeaderWriterFilter@1bc96ede, org.springframework.security.web.authentication.logout.LogoutFilter@5c1f15a1, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7e637cf0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7805875, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@21a7085a, org.springframework.security.web.session.SessionManagementFilter@1d922e87, org.springframework.security.web.access.ExceptionTranslationFilter@7b96d9c8, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1e2c9b57] +2021-01-31 12:39:12,130 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -98,47 +124,10 @@ ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 10:47:40,193 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 10:47:40,193 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 10:48:40,283 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-29 10:48:40,298 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Stopping service [Tomcat] -2021-01-29 10:48:40,306 INFO [restartedMain] o.s.b.a.l.ConditionEvaluationReportLoggingListener [ConditionEvaluationReportLoggingListener.java:142] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2021-01-29 10:51:51,793 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 7128 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-29 10:51:51,793 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 10:51:51,838 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-29 10:51:51,838 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-29 10:51:52,355 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 10:51:52,356 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 10:51:52,368 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 9ms. Found 0 repository interfaces. -2021-01-29 10:51:52,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 10:51:52,378 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 10:51:52,389 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 4ms. Found 0 repository interfaces. -2021-01-29 10:51:52,641 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 10:51:52,688 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 10:51:52,689 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-29 10:51:52,689 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 10:51:52,690 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 10:51:52,708 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-29 10:51:52,730 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$dd218f7d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 10:51:52,764 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$96f7dfa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 10:51:52,872 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-29 10:51:52,874 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-29 10:51:53,183 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) -2021-01-29 10:51:53,193 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-29 10:51:53,199 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-29 10:51:53,199 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] -2021-01-29 10:51:53,283 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-29 10:51:53,283 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1445 ms -2021-01-29 10:51:53,984 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 10:51:54,074 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 10:51:54,689 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 -2021-01-29 10:51:54,727 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 12:39:12,182 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:39:12,182 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:39:12,316 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:39:12,327 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -205,10 +194,10 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 10:51:54,756 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 10:51:54,756 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 10:51:54,847 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 10:51:54,862 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 12:39:12,332 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:39:12,332 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:39:12,334 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:39:12,339 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -275,206 +264,4185 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 10:51:54,866 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 10:51:54,866 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 10:51:54,868 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 10:51:54,876 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 10:51:54,877 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-29 10:51:54,878 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 10:51:54,880 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 10:51:54,880 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 10:51:54,881 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 10:51:54,888 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-29 10:51:54,890 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 3.401 seconds (JVM running for 4.286) -2021-01-29 10:51:54,938 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 27 -2021-01-29 10:51:54,939 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] -2021-01-29 10:51:54,946 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] -2021-01-29 10:52:01,689 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-29 10:52:01,689 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' -2021-01-29 10:52:01,695 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 6 ms -2021-01-29 10:52:02,848 INFO [http-nio-8080-exec-10] i.l.c.EpollProvider [EpollProvider.java:68] Starting without optional epoll library -2021-01-29 10:52:02,850 INFO [http-nio-8080-exec-10] i.l.c.KqueueProvider [KqueueProvider.java:70] Starting without optional kqueue library -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.login]. -2021-01-29 10:52:49,386 INFO [http-nio-8080-exec-6] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-29 10:52:49,528 INFO [http-nio-8080-exec-6] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-29 10:52:49,610 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:49,622 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,633 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 10:52:49,658 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 10:52:49,664 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,668 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,681 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,682 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,683 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,685 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,686 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,686 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,689 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,690 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,693 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 10:52:49,695 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:49,702 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:49,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-29 10:52:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:49,840 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:49,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:49,848 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:51,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:51,317 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:51,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:52:51,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:52:51,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:52:51,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:51,335 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:51,338 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:51,339 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:51,341 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:51,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:51,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-29 10:52:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:51,458 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:51,467 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:51,468 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:52,747 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:52:52,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-29 10:52:52], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:52:52,753 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:52:52,754 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:52:52,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:52,758 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:52,858 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:52,859 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:52,871 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:52,872 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:56,565 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:56,566 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:56,567 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:52:56,571 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:52:56,576 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:52:56,577 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:56,580 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:56,581 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:56,583 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:56,584 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:56,585 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:56,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-29 10:52:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,484 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:58,486 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,492 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:52:58,494 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 10:52:58,496 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,496 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,498 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,498 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:52:58,625 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:52:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:52:58,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-29 10:52:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:03,258 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:53:03,267 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:53:03,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-29 10:53:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:03,462 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:53:03,464 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:03,475 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:53:03,476 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:06,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:53:06,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:06,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:06,897 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:06,900 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:53:06,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-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:06,911 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:53:06,914 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:53:06,915 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:06,917 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:53:06,918 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:06,933 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:53:06,934 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:53:06,936 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:53:06,938 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:53:07,033 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:53:07,034 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:53:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:03,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:03,917 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:03,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:03,920 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:03,934 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:03,935 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:03,935 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:03,937 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:09,075 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:09,077 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:09,078 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:56:09,082 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:56:09,085 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:09,086 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:09,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:09,090 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:09,092 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:09,093 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:09,095 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:09,337 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:09,338 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:09,342 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:09,344 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:10,984 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:10,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-29 10:56:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:13,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-29 10:56:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:13,039 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:13,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:13,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:56:13,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:56:13,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:56:13,042 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:56:13,043 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:13,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:13,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-29 10:56:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:13,144 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:13,154 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:13,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:14,649 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:14,650 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:14,651 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.follow]. -2021-01-29 10:56:14,692 INFO [http-nio-8080-exec-8] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: +2021-01-31 12:39:12,344 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:39:12,345 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:39:12,348 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:39:12,352 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:39:12,353 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:39:12,356 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:39:12,357 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:39:12,358 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:39:12,361 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:39:12,367 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:39:12,368 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:39:12,369 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:39:12,369 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:39:12,375 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:39:12,375 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:39:12,375 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:39:12,376 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:39:12,377 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:39:12,378 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:39:12,378 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:39:12,382 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:39:12,388 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:39:12,392 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:39:12,392 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:39:12,392 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:39:12,402 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:39:12,404 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:39:12,405 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:39:12,405 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 12:39:12,406 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:39:12,406 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:39:12,426 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 12:39:12,429 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 10.366 seconds (JVM running for 11.794) +2021-01-31 12:39:12,453 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 73 +2021-01-31 12:39:12,456 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 73 +2021-01-31 12:39:12,458 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:39:12,458 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 12:39:12,472 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 12:39:12,472 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:39:15,164 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 12:39:15,164 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 12:39:15,172 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 8 ms +2021-01-31 12:39:15,232 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:15,312 INFO [http-nio-8080-exec-2] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 12:39:15,313 INFO [http-nio-8080-exec-2] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 12:39:15,460 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-4, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 12:39:15,460 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 12:39:15,477 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] +2021-01-31 12:39:15,477 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] +2021-01-31 12:39:15,477 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:39:15,478 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:39:15,478 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-31 12:39:15,479 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:39:15,576 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 74 +2021-01-31 12:39:15,577 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 12:39:15,578 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 74 +2021-01-31 12:39:15,580 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 12:39:15,580 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 74 +2021-01-31 12:39:15,580 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:39:15,581 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 12:39:15,582 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 12:39:15,582 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:39:16,036 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:23,355 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:23,398 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 12:39:23,413 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 12:39:23,552 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 12:39:23,634 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:23,645 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:23,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:23,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:23,666 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 12:39:23,687 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 12:39:23,692 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,693 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,697 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,701 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,702 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,705 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,706 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,707 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,708 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,709 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,710 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,711 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,712 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,713 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,714 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,715 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,716 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,719 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,720 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,721 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:23,722 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:39:23,728 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:39:23,858 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:23,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-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,862 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:23,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-31 12:39:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:23,867 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:23,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:23,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-31 12:39:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:23,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-31 12:39:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:23,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-31 12:39:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:23,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-31 12:39:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:29,224 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:29,225 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:29,227 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:29,227 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:29,228 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:29,229 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:39:29,231 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:39:29,336 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:29,337 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:29,338 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:29,340 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:29,341 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:34,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:34,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:34,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:34,309 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:34,310 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:34,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.UserService.logout]. +2021-01-31 12:39:34,312 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:39:34,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:39:34,331 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:34,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:34,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-31 12:39:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:34,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-31 12:39:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:45,864 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:45,865 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:45,866 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 12:39:45,885 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:45,886 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,888 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:45,889 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:45,890 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:45,891 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 12:39:45,895 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 12:39:45,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-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,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-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,902 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,902 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,903 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,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-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,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-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,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-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,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-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,906 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,907 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,908 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,909 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,910 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,911 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,913 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,913 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,914 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,914 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:45,915 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:39:45,916 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:39:45,918 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:39:46,158 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:46,160 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:46,162 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:46,164 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:46,166 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:46,172 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:46,173 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:46,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:46,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:46,181 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:54,246 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:54,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:54,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:54,249 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:39:54,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-31 12:39:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:39:57,620 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:39:57,622 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:39:57,623 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:39:57,623 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:39:57,624 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:39:57,625 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:39:57,628 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:39:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:40:20,839 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:20,840 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:20,841 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:40:20,842 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:20,842 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:40:20,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.UserService.logout]. +2021-01-31 12:40:20,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-31 12:40:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:40:20,849 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:40:20,871 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:20,872 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:21,123 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:21,124 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:29,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-31 12:40:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:29,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-31 12:40:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:29,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-31 12:40:29], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 12:40:29,319 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:29,320 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,321 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:40:29,321 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:29,322 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:40:29,322 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 12:40:29,325 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 12:40:29,328 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,329 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,329 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,330 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,330 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,331 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,332 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,332 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,333 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,333 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,334 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,334 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,335 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,336 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,336 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,337 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,337 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,338 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,338 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,339 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:40:29,340 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:40:29,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:40:29,448 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:29,449 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,450 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:40:29,451 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:29,452 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:40:29,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-31 12:40:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:29,462 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:29,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-31 12:40:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:40:29,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-31 12:40:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:29,465 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:40:34,369 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:40:34,370 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:40:34,371 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:40:34,371 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:40:34,372 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:40:34,373 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:40:34,375 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:40:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:08,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:08,592 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:08,593 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:08,594 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:08,594 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:08,647 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:41:08,679 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:08,680 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:08,680 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:08,681 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:08,682 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:08,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-31 12:41:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:08,685 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:20,554 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:20,555 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:20,556 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:20,556 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:20,557 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:20,557 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:20,559 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:20,574 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:20,575 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:20,576 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:20,576 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:20,577 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:20,578 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:20,579 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:24,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-31 12:41:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:24,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-31 12:41:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:24,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-31 12:41:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:24,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-31 12:41:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:24,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:24,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:24,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-31 12:41:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:42,009 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:42,010 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:42,011 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:42,011 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:42,012 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:42,013 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.DataService.calculateDAU]. +2021-01-31 12:41:42,039 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:42,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:42,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:42,047 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:42,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:42,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:42,050 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:42,050 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:42,052 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:41:53,853 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:53,854 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:53,855 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:53,856 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:53,856 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:53,857 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:41:53,889 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:41:53,889 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:41:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:41:53,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-31 12:41:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:41:53,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-31 12:41:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:41:53,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-31 12:41:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:41:53,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-31 12:41:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:41:53,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-31 12:41:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:42:08,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-31 12:42:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:43:41,251 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:43:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:43:41,252 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:43:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:43:41,255 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:43:41], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:43:41,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-31 12:43:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:43:43,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-31 12:43:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:43:43,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-31 12:43:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:43:43,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-31 12:43:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:43:43,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-31 12:43:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:43:43,936 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:43:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:43:43,936 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:43:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:43:43,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-31 12:43:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:45:12,512 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 1544 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 12:45:12,524 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 12:45:12,595 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 12:45:12,595 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 12:45:13,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:45:13,715 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:45:13,824 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 102ms. Found 1 repository interfaces. +2021-01-31 12:45:13,839 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:45:13,841 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:45:13,863 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 12:45:13,864 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 12ms. Found 0 repository interfaces. +2021-01-31 12:45:14,408 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 12:45:14,486 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 12:45:14,487 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:45:14,488 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:45:14,489 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:45:14,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 12:45:14,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:45:14,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:45:14,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:45:14,531 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-31 12:45:14,579 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$aaf9f1e8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:45:14,662 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$d747e065] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:45:14,952 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-31 12:45:14,957 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-31 12:45:15,722 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 12:45:15,748 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 12:45:15,766 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 12:45:15,766 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 12:45:16,012 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 12:45:16,014 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 3418 ms +2021-01-31 12:45:17,556 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 12:45:17,557 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 12:45:17,557 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 12:45:17,558 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 12:45:17,558 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 12:45:17,558 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 12:45:18,735 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 12:45:21,640 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 12:45:21,829 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 12:45:21,923 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 12:45:22,494 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: ca527800-14d1-44b5-82ac-15b9cd1b26df + +2021-01-31 12:45:22,536 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 12:45:22,572 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@39f4b98e, org.springframework.security.web.context.SecurityContextPersistenceFilter@3a744bf7, org.springframework.security.web.header.HeaderWriterFilter@6a4eb4da, org.springframework.security.web.authentication.logout.LogoutFilter@bfc0379, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6cfc90df, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7cce2e82, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@68256ec8, org.springframework.security.web.session.SessionManagementFilter@97136ea, org.springframework.security.web.access.ExceptionTranslationFilter@44421360, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6701a2b4] +2021-01-31 12:45:22,668 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:45:22,701 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:45:22,702 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:45:22,802 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:45:22,814 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:45:22,818 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:45:22,818 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:45:22,820 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:45:22,825 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:45:22,831 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:45:22,831 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:45:22,833 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:45:22,834 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:45:22,835 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:45:22,837 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:45:22,837 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:45:22,837 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:45:22,838 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:45:22,842 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:45:22,842 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:45:22,843 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:45:22,843 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:45:22,848 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:45:22,848 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:45:22,848 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:45:22,849 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:45:22,849 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:45:22,849 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:45:22,849 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:45:22,851 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 76 +2021-01-31 12:45:22,854 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:45:22,854 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:45:22,856 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:45:22,858 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:45:22,861 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:45:22,862 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:45:22,862 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:45:22,868 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:45:22,869 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:45:22,870 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:45:22,870 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:45:22,870 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:45:22,875 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 12:45:22,889 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 12:45:22,892 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 10.752 seconds (JVM running for 11.779) +2021-01-31 12:45:25,857 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 12:45:25,859 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:45:25,859 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-31 12:45:25,859 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:45:25,899 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 77 +2021-01-31 12:45:25,899 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 77 +2021-01-31 12:45:25,899 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 77 +2021-01-31 12:45:25,900 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 12:45:25,901 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 12:45:25,901 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:45:25,902 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 12:45:25,902 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 12:45:25,903 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:46:02,624 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 12:46:02,624 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 12:46:02,631 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-31 12:46:02,685 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:02,755 INFO [http-nio-8080-exec-3] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 12:46:02,756 INFO [http-nio-8080-exec-3] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 12:46:02,848 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:02,851 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:02,854 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:02,861 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:02], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:02,872 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:02,894 INFO [http-nio-8080-exec-3] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 12:46:03,019 INFO [http-nio-8080-exec-3] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 12:46:03,047 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:03,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-31 12:46:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:03,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-31 12:46:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:03,644 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:03,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-31 12:46:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:03,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-31 12:46:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:09,697 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:09,699 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,699 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:09,701 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:09,703 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:09,719 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:09,762 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:09,763 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,764 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:09,764 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:09,765 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:09,776 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 12:46:09,782 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 12:46:09,789 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,790 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,794 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,795 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,796 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,797 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,798 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,799 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,799 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,800 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,801 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,802 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,806 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,808 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,809 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,811 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:09,813 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:09,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,955 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:09,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-31 12:46:09], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:09,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:09,969 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:09,972 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:09,973 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:09,974 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:09,974 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:09], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:11,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-31 12:46:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:11,811 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:11,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-31 12:46:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:11,813 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:11,813 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:11,814 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-31 12:46:11,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-31 12:46:11], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-31 12:46:11,825 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:11,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-31 12:46:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:11,829 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:11,831 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:12,844 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:12,845 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:12,845 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:12,846 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:12,847 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:12,847 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:12,906 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:12,907 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:12,909 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:12,911 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:12,915 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:12,919 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:12,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:12,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-31 12:46:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:12,927 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:12,928 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:12,930 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:12,931 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:13,988 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:13,989 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:13,990 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:13,991 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:13,992 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:13,993 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:13,995 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 12:46:13,997 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:13,998 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,002 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,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-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,005 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,005 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,006 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,007 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,007 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,008 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:14,009 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:14], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 12:46:14,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-31 12:46:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:14,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-31 12:46:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:16,117 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:16,118 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:16,119 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:16,120 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:16,121 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:16,122 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:16,126 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:16,127 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:16,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-31 12:46:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:16,130 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:16,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:16,140 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:16,141 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:16,145 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:16,148 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:16,150 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:16,151 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:16,153 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:19,722 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:19,723 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:19,724 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:19,724 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:19,725 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:19,726 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:19,729 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 12:46:19,732 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:19,733 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:19,734 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 12:46:19,737 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:19], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:19,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-31 12:46:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:21,122 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:21,124 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:21,124 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:21,125 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:21,126 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:21,126 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:21,129 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:21,129 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:21,130 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:21,132 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:21,135 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:21,140 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:21,141 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:21,144 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:21,147 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:21,149 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:21,150 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:21,151 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:23,159 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:23,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-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,161 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:23,162 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:23,162 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:23,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-31 12:46:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:23,165 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 12:46:23,168 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,169 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,170 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,171 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,173 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,173 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,174 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,175 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,175 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,176 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:23,177 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:23,178 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:25,157 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:25,159 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,160 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:25,161 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:25,162 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:25,163 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:25,165 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 12:46:25,166 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,167 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,167 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,168 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,169 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,170 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,170 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,172 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,173 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,174 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:25,174 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 12:46:25,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-31 12:46:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:25,180 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:26,723 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:26,725 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,725 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:26,726 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:26,727 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:26,728 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:26,730 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 12:46:26,732 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,733 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,733 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,734 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,734 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,735 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:26,736 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 12:46:26,746 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:26,747 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:28,127 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:28,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-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,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-31 12:46:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:28,130 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:28,130 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:28,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-31 12:46:28], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:28,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-31 12:46:28], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 12:46:28,134 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,136 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,137 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,138 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:28,139 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:28,142 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:29,375 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:29,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-31 12:46:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:29,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-31 12:46:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:29,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-31 12:46:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:29,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-31 12:46:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:29,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-31 12:46:29], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:29,381 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:29,382 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:29,383 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:29,384 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:29,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 12:46:29,393 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:29,394 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 12:46:29,397 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:29,400 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:29,401 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:29,403 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:29,404 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:33,440 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:33,441 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:33,442 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:33,442 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:33,443 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:33,443 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:33,445 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:33,995 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:33,996 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:33,997 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:33,998 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:33,998 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:33,999 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:34,001 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:41,435 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:41,436 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:41,437 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:41,437 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:41,438 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:41,460 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.DataService.calculateDAU]. +2021-01-31 12:46:41,477 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:41,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:41,484 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:41,484 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:41,485 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:41,486 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:41,486 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:41,487 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:41,490 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:46:47,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:47,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:47,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:47,271 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:47,271 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:47,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:46:47,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-31 12:46:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:46:47,307 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:46:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:46:47,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-31 12:46:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:46:47,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-31 12:46:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:46:47,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-31 12:46:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:46:47,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-31 12:46:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:46:47,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-31 12:46:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:50:09,461 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 6492 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 12:50:09,463 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 12:50:09,506 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 12:50:09,506 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 12:50:10,331 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:50:10,333 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:50:10,398 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 61ms. Found 1 repository interfaces. +2021-01-31 12:50:10,409 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:50:10,410 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:50:10,427 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 12:50:10,427 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. +2021-01-31 12:50:10,728 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 12:50:10,774 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 12:50:10,775 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:50:10,775 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:50:10,775 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:50:10,776 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 12:50:10,776 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:50:10,776 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:50:10,776 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:50:10,797 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-31 12:50:10,820 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$d038c6c4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:50:10,861 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$fc86b541] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:50:10,981 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-31 12:50:10,983 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-31 12:50:11,347 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 12:50:11,358 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 12:50:11,366 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 12:50:11,366 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 12:50:11,471 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 12:50:11,472 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1966 ms +2021-01-31 12:50:12,500 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 12:50:12,501 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 12:50:12,501 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 12:50:12,501 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 12:50:12,501 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 12:50:12,502 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 12:50:13,457 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 12:50:16,263 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 12:50:16,476 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 12:50:16,579 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 12:50:17,209 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: d508ba93-6fa1-427e-b37a-327fe2beb472 + +2021-01-31 12:50:17,259 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 12:50:17,296 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7098d3f5, org.springframework.security.web.context.SecurityContextPersistenceFilter@76452b3b, org.springframework.security.web.header.HeaderWriterFilter@66a0a0de, org.springframework.security.web.authentication.logout.LogoutFilter@4f05245c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5a202faf, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@746857d4, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@26565425, org.springframework.security.web.session.SessionManagementFilter@7c5d615, org.springframework.security.web.access.ExceptionTranslationFilter@37b66b4c, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1f3e3e19] +2021-01-31 12:50:17,406 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:50:17,439 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:50:17,439 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:50:17,524 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:50:17,536 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:50:17,540 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:50:17,540 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:50:17,542 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:50:17,547 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:50:17,551 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:50:17,552 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:50:17,553 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:50:17,553 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:50:17,555 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:50:17,556 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:50:17,556 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:50:17,557 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:50:17,558 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:50:17,562 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:50:17,562 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:50:17,562 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:50:17,563 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:50:17,567 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:50:17,567 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:50:17,567 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:50:17,567 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:50:17,568 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:50:17,568 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 79 +2021-01-31 12:50:17,568 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:50:17,569 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:50:17,571 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:50:17,572 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:50:17,574 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:50:17,575 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:50:17,578 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:50:17,578 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:50:17,578 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:50:17,583 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:50:17,583 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:50:17,584 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:50:17,585 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:50:17,585 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:50:17,588 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 12:50:17,602 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 12:50:17,604 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 8.536 seconds (JVM running for 9.471) +2021-01-31 12:50:20,571 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 12:50:20,573 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:50:20,573 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-31 12:50:20,573 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:50:20,605 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 80 +2021-01-31 12:50:20,605 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 80 +2021-01-31 12:50:20,605 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 80 +2021-01-31 12:50:20,606 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 12:50:20,606 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:50:20,606 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 12:50:20,608 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 12:50:20,608 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:50:20,608 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 12:50:44,836 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 12:50:44,836 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 12:50:44,843 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-31 12:50:44,940 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:50:45,007 INFO [http-nio-8080-exec-3] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 12:50:45,009 INFO [http-nio-8080-exec-3] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 12:50:45,098 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:50:45,101 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:50:45,103 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:50:45,108 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:50:45,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-31 12:50:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:50:45,141 INFO [http-nio-8080-exec-3] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 12:50:45,264 INFO [http-nio-8080-exec-3] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 12:50:45,292 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:50:45,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-31 12:50:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:50:45,787 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:50:45,789 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:50:45,792 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:50:45,794 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:50:51,247 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:50:51,249 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:50:51,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-31 12:50:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:50:51,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-31 12:50:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:50:51,253 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:50:51,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-31 12:50:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:50:51,257 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:50:56,816 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:50:56,817 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:50:56,819 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:50:56,820 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:50:56,822 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:50:56,867 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:50:56,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-31 12:50:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:50:56,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-31 12:50:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:50:56,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-31 12:50:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:50:56,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-31 12:50:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:50:56,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-31 12:50:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:50:56,911 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:50:56,913 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:50:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:32,402 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 3536 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 12:53:32,406 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 12:53:32,439 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 12:53:32,440 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 12:53:32,968 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:53:32,969 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:53:33,015 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 42ms. Found 1 repository interfaces. +2021-01-31 12:53:33,022 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:53:33,023 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:53:33,034 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 12:53:33,035 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 6ms. Found 0 repository interfaces. +2021-01-31 12:53:33,273 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 12:53:33,314 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 12:53:33,314 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:53:33,314 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:53:33,315 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:53:33,315 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 12:53:33,315 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:53:33,315 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:53:33,316 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:53:33,333 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-31 12:53:33,352 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$5bb4381e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:53:33,387 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8802269b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:53:33,494 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-31 12:53:33,496 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-31 12:53:33,799 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 12:53:33,809 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 12:53:33,815 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 12:53:33,815 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 12:53:33,906 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 12:53:33,906 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1466 ms +2021-01-31 12:53:34,843 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 12:53:34,843 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 12:53:34,844 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 12:53:34,844 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 12:53:34,844 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 12:53:34,844 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 12:53:35,750 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 12:53:38,579 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 12:53:38,760 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 12:53:38,855 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 12:53:39,432 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 99fa3d05-e8ed-4297-9989-6d0682495a70 + +2021-01-31 12:53:39,476 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 12:53:39,508 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@43f628f9, org.springframework.security.web.context.SecurityContextPersistenceFilter@29fc90bb, org.springframework.security.web.header.HeaderWriterFilter@7f75393c, org.springframework.security.web.authentication.logout.LogoutFilter@1a61190d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5187fbf3, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4dccb053, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@30ca281b, org.springframework.security.web.session.SessionManagementFilter@6cbf4011, org.springframework.security.web.access.ExceptionTranslationFilter@72ff6c72, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@f13c37f] +2021-01-31 12:53:39,608 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:53:39,641 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:53:39,642 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:53:39,732 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:53:39,744 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:53:39,747 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:53:39,748 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:53:39,750 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:53:39,754 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:53:39,758 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:53:39,758 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:53:39,759 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:53:39,759 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:53:39,760 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:53:39,762 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:53:39,762 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:53:39,762 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:53:39,763 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:53:39,767 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:53:39,767 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:53:39,767 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:53:39,768 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:53:39,771 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:53:39,771 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:53:39,771 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:53:39,772 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:53:39,772 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:53:39,772 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:53:39,772 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 82 +2021-01-31 12:53:39,772 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:53:39,774 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:53:39,775 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:53:39,776 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:53:39,776 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:53:39,779 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:53:39,779 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:53:39,779 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:53:39,783 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:53:39,783 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:53:39,784 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:53:39,784 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:53:39,784 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:53:39,789 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 12:53:39,799 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 12:53:39,801 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 7.701 seconds (JVM running for 8.543) +2021-01-31 12:53:40,171 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 12:53:40,171 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 12:53:40,178 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-31 12:53:40,227 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:40,297 INFO [http-nio-8080-exec-2] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 12:53:40,298 INFO [http-nio-8080-exec-2] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 12:53:40,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:40,403 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:40,413 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:40,422 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:40,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-31 12:53:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:40,459 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 12:53:40,585 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 12:53:40,615 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:41,062 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:41,064 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:41,065 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:41,067 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:41,069 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:42,776 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 12:53:42,778 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:53:42,778 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-31 12:53:42,778 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:53:42,805 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 83 +2021-01-31 12:53:42,805 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 83 +2021-01-31 12:53:42,805 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 83 +2021-01-31 12:53:42,806 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:53:42,806 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 12:53:42,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 12:53:42,808 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 12:53:42,808 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:53:42,808 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 12:53:43,921 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:43,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:43,923 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:43,924 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:43,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:43,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:43,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-31 12:53:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:44,844 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:44,845 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:44,846 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:44,847 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:44,847 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:44,848 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:44,850 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:46,913 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:46,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-31 12:53:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:46,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-31 12:53:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:46,916 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:46,916 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:46,917 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:46,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-31 12:53:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:51,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:51,040 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:51,042 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:51,043 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:51,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:51,074 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:53:51,080 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:51,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:51,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:51,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:51,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:51,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:51,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:51,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:51,096 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:58,706 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:58,707 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:58,708 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:58,711 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:58,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:58,714 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.DataService.calculateDAU]. +2021-01-31 12:53:58,731 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:58,733 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:53:58,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-31 12:53:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:53:58,736 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:53:58,737 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:53:58,737 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:53:58,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-31 12:53:58], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:53:58,739 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:53:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:53:58,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-31 12:53:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:54:07,974 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:54:07,975 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:54:07,975 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:54:07,976 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:54:07,978 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:54:07,978 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:54:07,981 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:54:46,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-31 12:54:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:54:46,068 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:54:46,069 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:54:46,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:54:46,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:54:46,073 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:54:46,075 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:54:50,897 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-31 12:54:50,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-31 12:54:50], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-31 12:54:50,912 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:50], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-31 12:54:50,912 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:50], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-31 12:54:50,918 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:54:50,920 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:54:56,673 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:56], 访问了[com.greate.community.service.UserService.logout]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:54:56,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-31 12:54:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:54:56,710 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:54:56,711 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:54:56,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:54:56,808 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:54:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 12:55:02,807 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,810 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:02,811 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:02,812 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,827 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,836 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,836 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,837 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,837 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,839 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,839 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,840 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:02,841 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:02,844 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:02,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-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:02,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:02,955 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:02,964 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:02,966 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:02,967 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:02,968 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:02,968 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:02], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:05,901 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:05,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:05,903 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:05,903 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:05,904 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:05,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:05,907 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:08,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-31 12:55:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:08,388 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:08,388 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:08,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:08,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:08,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.UserService.logout]. +2021-01-31 12:55:08,391 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:08,393 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:08,411 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:08,412 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:08,512 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:08,513 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:08], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:17,253 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:17,256 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:17,277 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 12:55:17,285 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,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-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 12:55:17,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:17,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:17,396 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:17,398 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,399 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:17,401 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:17,402 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:17,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:17,406 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:17,407 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:17,408 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:17,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:24,688 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:24,689 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:24,690 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:24,691 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:24,691 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:24,692 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:24,693 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:32,192 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:32,193 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:32,195 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:32,196 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:32,197 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:32,198 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 12:55:32,199 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:32,200 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:32,202 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:32,203 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:32,203 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:32,204 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:32,204 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:32,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:32,206 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:37,789 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:37,790 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:37,790 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:37,791 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:37,792 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:37,793 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.DataService.calculateDAU]. +2021-01-31 12:55:37,795 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:37,797 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:55:37,798 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:55:37,799 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:55:37,800 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:55:37,800 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:55:37,801 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:55:37,801 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:55:37,803 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:55:37], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:56:11,427 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:56:11,427 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:56:11,428 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:56:11,429 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:56:11,429 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:56:11,430 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:56:11,432 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:56:11,491 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:56:11,493 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:56:11,494 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:56:11,495 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:56:11,496 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:56:11,497 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:56:11,499 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:56:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:59:29,213 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 2476 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 12:59:29,221 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 12:59:29,247 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 12:59:29,248 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 12:59:29,764 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:59:29,766 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:59:29,809 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 41ms. Found 1 repository interfaces. +2021-01-31 12:59:29,817 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 12:59:29,818 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 12:59:29,829 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 12:59:29,829 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 6ms. Found 0 repository interfaces. +2021-01-31 12:59:30,065 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 12:59:30,104 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 12:59:30,104 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:59:30,105 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:59:30,105 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:59:30,105 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 12:59:30,106 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 12:59:30,106 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:59:30,106 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 12:59:30,123 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-31 12:59:30,142 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$3e2ac514] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:59:30,176 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$6a78b391] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 12:59:30,279 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-31 12:59:30,281 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-31 12:59:30,597 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 12:59:30,607 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 12:59:30,614 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 12:59:30,614 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 12:59:30,705 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 12:59:30,705 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1457 ms +2021-01-31 12:59:31,659 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 12:59:31,659 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 12:59:31,660 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 12:59:31,660 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 12:59:31,660 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 12:59:31,660 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 12:59:32,556 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 12:59:35,329 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 12:59:35,513 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 12:59:35,609 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 12:59:36,163 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: bf5dfb99-b7a1-420e-a09d-ff992c92132d + +2021-01-31 12:59:36,203 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 12:59:36,236 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5f937661, org.springframework.security.web.context.SecurityContextPersistenceFilter@19a5b182, org.springframework.security.web.header.HeaderWriterFilter@3061de34, org.springframework.security.web.authentication.logout.LogoutFilter@72fae146, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@fa6c5c1, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@b372f44, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@8a4d3a8, org.springframework.security.web.session.SessionManagementFilter@5372df2d, org.springframework.security.web.access.ExceptionTranslationFilter@438bd8f2, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@113c869f] +2021-01-31 12:59:36,337 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:59:36,369 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:59:36,370 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:59:36,456 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:59:36,464 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:59:36,467 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:59:36,467 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:59:36,469 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:59:36,472 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:59:36,478 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:59:36,478 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:59:36,479 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:59:36,479 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:59:36,481 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:59:36,482 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:59:36,483 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:59:36,483 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:59:36,487 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:59:36,491 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:59:36,491 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:59:36,491 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:59:36,492 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:59:36,492 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 85 +2021-01-31 12:59:36,494 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 12:59:36,496 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:59:36,497 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:59:36,497 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:59:36,497 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:59:36,497 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 12:59:36,498 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:59:36,498 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:59:36,498 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:59:36,499 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:59:36,502 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 12:59:36,505 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 12:59:36,505 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 12:59:36,505 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 12:59:36,508 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 12:59:36,509 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 12:59:36,509 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 12:59:36,510 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 12:59:36,510 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:59:36,513 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 12:59:36,524 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 12:59:36,526 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 7.609 seconds (JVM running for 8.428) +2021-01-31 12:59:39,505 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 12:59:39,506 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [delete-0] +2021-01-31 12:59:39,506 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [delete-0] +2021-01-31 12:59:39,506 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 12:59:39,531 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 86 +2021-01-31 12:59:39,531 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 86 +2021-01-31 12:59:39,531 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 86 +2021-01-31 12:59:39,532 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 12:59:39,532 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 12:59:39,535 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 12:59:39,536 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 12:59:39,536 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 12:59:39,536 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 12:59:52,966 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 12:59:52,967 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 12:59:52,974 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-31 12:59:52,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-31 12:59:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:59:53,062 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 12:59:53,063 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 12:59:53,151 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:59:53,154 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:59:53,156 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:59:53,161 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:59:53,172 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:59:53,194 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 12:59:53,315 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 12:59:53,343 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:59:53,843 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:59:53,845 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:59:53,848 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:59:53,850 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:59:53,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-31 12:59:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:59:53,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:59:53,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:59:53,909 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:59:53,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:59:53,912 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:59:53,915 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:59:53,921 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 12:59:54,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-31 12:59:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 12:59:54,001 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 12:59:54,003 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 12:59:54,008 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 12:59:54,009 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 12:59:54,011 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 12:59:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 12:59:54,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-31 12:59:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:01,426 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:01,427 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:01,428 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:01,429 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:01,430 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:01,431 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:01,433 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:18,754 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:18,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,758 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:18,759 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:18,759 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.UserService.updateHeader]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:18,805 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:18,807 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:18,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-31 13:00:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:00:18,841 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:00:18,859 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,860 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,866 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,868 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,869 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,870 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,871 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,871 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,872 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,873 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,873 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,874 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,874 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,875 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,875 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,876 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,876 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,877 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,878 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:18,878 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:00:18,879 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:18,881 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:19,167 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:19,169 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:19,170 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:19,171 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:19,172 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:19,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-31 13:00:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:19,180 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:19,180 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:19,181 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:19,181 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:19,182 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:19,182 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:19,183 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:19,183 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:19,184 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:19], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:28,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:28,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:28,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:28,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:28,330 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:28,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:28,332 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-31 13:00:28,333 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-31 13:00:28,338 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-31 13:00:28,339 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-31 13:00:28,341 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:28,344 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:28,448 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:28,449 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:28,451 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:28,454 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:28], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00: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-31 13:00:28], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:31,245 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:31,246 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:31,248 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:31,249 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:31,249 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:31,282 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:31,283 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:31,284 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:31,284 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:31,285 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:31,287 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:31,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:31,528 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:31,529 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:31,531 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:31,533 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:31,535 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:33,382 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:33,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:33,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:33,385 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:33,385 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:33,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-31 13:00:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:33,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-31 13:00:33,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-31 13:00:33,388 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-31 13:00:33,388 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-31 13:00:33,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:33,391 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:35,980 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:35,981 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:35,982 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:35,982 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:35,983 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:35,984 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:35,985 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:35], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:36,015 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:36,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-31 13:00:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:36,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-31 13:00:36], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:36,019 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:36], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:36,020 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:36], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:38,966 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:38,967 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:38,968 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:38,968 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:38,969 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:38,970 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:38,972 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:38], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:39,087 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:39,088 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:39,089 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:39], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:39,091 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:39], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:39,092 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:39], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:50,602 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:50,602 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:50,625 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:50], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:00:50,874 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:00:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:00:50,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-31 13:00:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:08,408 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 18256 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 13:04:08,428 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 13:04:08,511 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 13:04:08,512 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 13:04:09,765 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 13:04:09,767 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 13:04:09,838 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 64ms. Found 1 repository interfaces. +2021-01-31 13:04:09,849 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 13:04:09,850 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 13:04:09,868 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 13:04:09,868 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 9ms. Found 0 repository interfaces. +2021-01-31 13:04:10,198 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 13:04:10,247 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 13:04:10,247 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 13:04:10,247 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 13:04:10,247 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 13:04:10,248 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 13:04:10,248 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 13:04:10,248 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 13:04:10,249 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 13:04:10,271 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-31 13:04:10,295 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$691d2276] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 13:04:10,337 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$956b10f3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 13:04:10,459 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-31 13:04:10,461 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-31 13:04:10,817 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 13:04:10,828 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 13:04:10,835 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 13:04:10,835 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 13:04:10,936 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 13:04:10,936 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2423 ms +2021-01-31 13:04:11,895 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 13:04:11,896 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 13:04:11,896 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 13:04:11,896 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 13:04:11,896 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 13:04:11,896 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 13:04:12,838 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 13:04:15,649 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 13:04:15,844 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 13:04:15,942 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 13:04:16,521 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: c330aeaa-c627-4b9c-ac37-7d5d4c14e89b + +2021-01-31 13:04:16,565 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 13:04:16,600 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1999d360, org.springframework.security.web.context.SecurityContextPersistenceFilter@a17d7a, org.springframework.security.web.header.HeaderWriterFilter@19d2edf4, org.springframework.security.web.authentication.logout.LogoutFilter@5ef93bef, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6802c1a0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3add6d1f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@19c7cfe5, org.springframework.security.web.session.SessionManagementFilter@5b561640, org.springframework.security.web.access.ExceptionTranslationFilter@1fa14baa, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@170cf313] +2021-01-31 13:04:16,707 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 13:04:16,738 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:04:16,738 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:04:16,816 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:04:16,823 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 13:04:16,826 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:04:16,827 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:04:16,828 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 13:04:16,832 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 13:04:16,837 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:04:16,837 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:04:16,838 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:04:16,839 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 13:04:16,840 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:04:16,841 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 13:04:16,841 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 13:04:16,842 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 13:04:16,845 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 13:04:16,849 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:04:16,849 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:04:16,849 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 13:04:16,850 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 13:04:16,852 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 88 +2021-01-31 13:04:16,854 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 13:04:16,854 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:04:16,854 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 13:04:16,854 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:04:16,855 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:04:16,855 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 13:04:16,855 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 13:04:16,855 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 13:04:16,858 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 13:04:16,858 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:04:16,860 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 13:04:16,863 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:04:16,863 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:04:16,863 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 13:04:16,867 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:04:16,867 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 13:04:16,868 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 13:04:16,868 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 13:04:16,868 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 13:04:16,872 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 13:04:16,883 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 13:04:16,885 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.363 seconds (JVM running for 10.922) +2021-01-31 13:04:19,855 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 13:04:19,857 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] +2021-01-31 13:04:19,857 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] +2021-01-31 13:04:19,857 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 13:04:19,886 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 89 +2021-01-31 13:04:19,886 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 89 +2021-01-31 13:04:19,886 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 89 +2021-01-31 13:04:19,886 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 13:04:19,887 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 13:04:19,887 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 13:04:19,889 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 13:04:19,889 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 13:04:19,889 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 13:04:34,467 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 13:04:34,468 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 13:04:34,474 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 6 ms +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:34,559 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 13:04:34,561 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 13:04:34,645 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:04:34,697 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 13:04:34,823 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:34,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-31 13:04:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:35,336 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:35,338 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:35,340 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:35,342 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:35,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:35,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:35,346 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:35,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:35,348 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:35,351 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:35,354 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:35,354 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:35,355 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:35,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:35,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:39,159 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:39,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:39,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:39,162 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:39,162 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:39,163 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:39,166 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:39,286 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:39,288 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:39,291 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:39,293 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:39,293 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:39], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:44,200 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:44,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:44,204 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:44,227 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.DataService.calculateUV]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:44,233 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:44,245 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:44,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:44,352 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:44,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-31 13:04:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:48,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-31 13:04:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:48,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:48,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:48,388 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:48,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:48,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.DataService.calculateDAU]. +2021-01-31 13:04:48,407 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:48,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:48,411 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:48,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:48,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:48,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:48,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:48,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-31 13:04:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:48,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:48,516 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:48,518 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:48,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-31 13:04:48], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:48,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-31 13:04:48], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:48,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-31 13:04:48], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:54,349 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:54,350 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:04:54,350 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:04:54,351 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:54,352 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:04:54,355 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.UserService.logout]. +2021-01-31 13:04:54,371 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:04:54,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-31 13:04:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:04:54,397 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:54,398 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:04:54,496 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:04:54,498 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:04:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:03,984 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:03,986 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:03,992 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:03], 访问了[com.greate.community.service.UserService.login]. +2021-01-31 13:05:04,014 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:04,015 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,015 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:04,016 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:04,017 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:04,018 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:05:04,020 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:05:04,025 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,025 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,026 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,027 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,027 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,028 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,028 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,029 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,029 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,030 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,031 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,031 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,032 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,038 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:04,038 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:04,137 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,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-31 13:05:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:04,142 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:04,143 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:04,143 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:04,144 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,146 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:04,146 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:04,147 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:04,147 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:04,148 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:04,148 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:04,149 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:04,150 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:10,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:10,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:10,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:10,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:10,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:10,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:10,367 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:13,438 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:13,439 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,440 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:13,440 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:13,441 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:13,441 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:05:13,443 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:05:13,445 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,446 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,447 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,448 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,449 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,449 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,450 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,450 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,451 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,451 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,452 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,452 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,453 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,453 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,454 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:13,454 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:13,457 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:13,458 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:15,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:15,835 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:15,837 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:15,837 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:15,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,848 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:15,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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05: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-31 13:05:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:16,016 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:16,017 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:16,018 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:16,019 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:16,020 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:16,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-31 13:05:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:16,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-31 13:05:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:16,032 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:16,032 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:16,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-31 13:05:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:17,797 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:17,798 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,799 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:17,799 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:17,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-31 13:05:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:17,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-31 13:05:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:05:17,802 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:05:17,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-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,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-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,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-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,807 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,808 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,808 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,809 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,809 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,810 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,811 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,811 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,812 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,812 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,813 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,813 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,813 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,814 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,814 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,815 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:17,815 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:17,816 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:17,817 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:21,188 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:21,189 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,190 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:21,191 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:21,192 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:21,192 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 13:05:21,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,195 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,195 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,196 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:21,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,200 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,200 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:21,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-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,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-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,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-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,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-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,205 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:21,206 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,207 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:21,210 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:21,211 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,211 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,212 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,212 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:21,213 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:21,215 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,215 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,216 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,216 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:21,217 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:21,218 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,219 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:21,219 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:21,220 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:21,222 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:21,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-31 13:05:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:21,225 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:21,323 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:21,325 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:21,326 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:21,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:21,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:22,279 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:22,280 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:22,280 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:22,281 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:22,281 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:22,283 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.DiscussPostSerivce.updateType]. +2021-01-31 13:05:22,351 INFO [http-nio-8080-exec-4] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: acks = 1 batch.size = 16384 bootstrap.servers = [localhost:9092] @@ -536,1215 +4504,324 @@ Error starting ApplicationContext. To display the conditions report re-run your transactional.id = null value.serializer = class org.apache.kafka.common.serialization.StringSerializer -2021-01-29 10:56:14,703 INFO [http-nio-8080-exec-8] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 10:56:14,703 INFO [http-nio-8080-exec-8] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 10:56:14,709 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 10:56:14,744 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:14,747 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:14,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:14,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:56:14,749 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:56:14,749 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:56:14,750 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:56:14,751 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:14,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:14,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-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:14,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-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:14,852 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:14,853 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:19,164 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:19,165 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:19,166 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.FollowService.unfollow]. -2021-01-29 10:56:19,190 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:56:19,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-29 10:56:19], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:56:19,196 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:19,198 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:19,288 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:19,289 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:19,294 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56: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-29 10:56:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:22,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:22,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:22,277 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.follow]. -2021-01-29 10:56:22,302 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:22,302 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:22,304 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:22,305 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:56:22,305 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:56:22,305 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:56:22,306 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:56:22,307 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:22,308 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:22,398 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:22,400 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:22,407 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:22,408 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:25,214 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:25,216 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:56:25,217 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:56:25,217 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:56:25,218 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:56:25,219 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:25,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:25,319 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:25,320 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:27,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:27,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:27,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:27,420 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:27], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:27,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-29 10:56:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:27,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-29 10:56:27], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:30,402 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:30,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:30,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:56:30,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:56:30,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:30,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:30,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:30,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:30,422 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:30,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-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:30,530 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:30,530 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,293 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:32,294 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,295 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:32,296 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 10:56:32,298 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,299 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,299 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,300 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,300 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:32,302 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:32,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:32,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:32,414 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:32,415 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:38,012 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:38,012 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:38,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-29 10:56:38], 访问了[com.greate.community.service.UserService.findUserByName]. -2021-01-29 10:56:40,043 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:40,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:40,046 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:56:40,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:56:40,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:40,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:40,057 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:40,063 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:40,064 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:40,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-29 10:56:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:40,175 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:48,324 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:48,325 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:48,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:48,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 10:56:48,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 10:56:48,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 10:56:48,328 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 10:56:48,328 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:48,330 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:48,565 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:48,566 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:48,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-29 10:56:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:48,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-29 10:56:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,844 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:50,845 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,846 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:50,848 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 10:56:50,849 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,850 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,851 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,852 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,853 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:50,854 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:50,956 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:50,957 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:50,964 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:50,965 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:54,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-29 10:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:54,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-29 10:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:54,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-29 10:56:54], 访问了[com.greate.community.service.UserService.findUserByName]. -2021-01-29 10:56:54,231 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:54], 访问了[com.greate.community.service.MessageService.addMessage]. -2021-01-29 10:56:56,277 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:56,279 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,281 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:56,283 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 10:56:56,285 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,286 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,286 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,287 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,288 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,289 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:56,290 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:56,387 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:56,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:56,398 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:56,399 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:56:58,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-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:58,649 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:58,650 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:58,651 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:58,652 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:56:58,653 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:56:58,762 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:58,763 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:56:58,773 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:56:58,774 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:01,414 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:01,415 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:01,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:57:01,419 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:01,420 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:57:01,421 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:01,423 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:57:01,426 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:01,427 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:01,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-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:01,440 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:01,441 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:01,447 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:01,447 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:01,449 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:01,451 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:01,589 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:01,591 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:06,907 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:06,908 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:06,909 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:06,910 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:06,969 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:06,971 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:06,972 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:06,975 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:31,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:31,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:31,780 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:57:31,783 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:31,783 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:57:31,785 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:31,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:57:31,789 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:31,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:57:31,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:31,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:57:31,800 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:31,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:31,802 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:31,803 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:31,809 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:31,810 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:31,812 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:31,813 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:32,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:32,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:33,307 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:33,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-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:33,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-29 10:57:33], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:57:33,314 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:57:33,317 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:57:33,318 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:33,321 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:33,322 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:33,323 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:33,325 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:57:33,326 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:57:33,425 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:33,426 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:57:33,433 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:57:33,434 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:57:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:58:15,740 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:58:15,741 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:58:15,743 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 10:58:15,747 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 10:58:15,750 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 10:58:15,751 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:58:15,753 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:58:15,754 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:58:15,755 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:58:15,757 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:58:15,758 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:58:16,001 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:58:16,002 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:58:16,011 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:58:16,012 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:58:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:59:17,634 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:59:17,635 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:59:17,636 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:59:17,638 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:59:17,639 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:59:17,640 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:59:17,641 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:59:17,645 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:59:17,645 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 10:59:17,648 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:59:17,652 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 10:59:17,656 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:59:17,657 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:59:17,659 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:59:17,659 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:59:17,665 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:59:17,666 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 10:59:17,668 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 10:59:17,670 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 10:59:17,911 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 10:59:17,912 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 10:59:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,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-29 11:00:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:00:15,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-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,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-29 11:00:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:00:15,246 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 11:00:15,249 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,250 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,250 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,251 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,251 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,252 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:00:15,252 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:00:15,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:00:15,353 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:15,358 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:00:15,359 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:21,558 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:00:21,559 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:21,560 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:00:21,562 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:21,562 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:00:21,563 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:00:21,564 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:00:21,577 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:00:21,580 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:00:21,581 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:00:21,583 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:00:21,589 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:00:21,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:00:21,592 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:00:21,594 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:00:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:00:21,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-29 11:00:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:36,076 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:36,078 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:36,080 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.logout]. -2021-01-29 11:03:36,081 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:36,084 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:36,104 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:36,345 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:43,139 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:43,140 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.login]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,173 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,173 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,173 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,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-29 11:03:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:03:43,175 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:43,176 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:43,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:43,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:43,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:43,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,486 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:44,487 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,488 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:03:44,491 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:03:44,495 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:44,497 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,500 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:44,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,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-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,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-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:44,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,511 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,514 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:44,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,516 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,517 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:44,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,520 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,522 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,523 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:44,525 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:44,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:44,627 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:44,629 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:44,641 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:44,641 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:45,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:45,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:45,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:03:45,322 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:45,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:45,324 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:45,325 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:03:45,329 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:45,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:45,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:45,336 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:03:45,339 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:45,340 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:45,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:45,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:45,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:45,349 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:45,350 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:45,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:45,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,785 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:47,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,786 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:03:47,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:03:47,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:47,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:47,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,805 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,805 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:47,806 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,809 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,810 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:47,811 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,812 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,813 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:47,815 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,819 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,820 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:47,822 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:47,823 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:47,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:47,923 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:47,933 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:47,934 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:50,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-29 11:03:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:51,035 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:51,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-29 11:03:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:51,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-29 11:03:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:51,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-29 11:03:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,171 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:55,172 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:03:55,178 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:03:55,183 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:55,184 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,188 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,189 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:55,191 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,194 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,194 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:55,196 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,198 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,199 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:55,200 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,201 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,202 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:03:55,204 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,207 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,208 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,209 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:55,210 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:55,211 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:55,407 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:55,408 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:55,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-29 11:03:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:55,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-29 11:03:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:56,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:56,345 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:56,346 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:03:56,348 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:56,349 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:56,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:56,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:03:56,355 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:56,355 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:56,358 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:56,361 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:03:56,365 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:56,365 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:56,368 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:56,372 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:56,374 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:56,375 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:56,376 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:56,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-29 11:03:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:56,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-29 11:03:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,469 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:58,470 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,471 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:03:58,475 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findNotices]. -2021-01-29 11:03:58,479 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,480 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,482 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,483 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,483 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:03:58,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 11:03:58,489 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:03:58,490 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:03:58,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:03:58,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:03:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:00,597 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:00,598 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:00,598 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:00,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 11:04:00,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 11:04:00,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 11:04:00,600 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 11:04:00,600 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:00,602 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:00,803 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:00,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-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:00,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-29 11:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:00,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-29 11:04:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:09,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-29 11:04:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:09,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-29 11:04:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:09,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:09,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:09,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:09,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:09,514 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:09,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-29 11:04:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:11,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:11,297 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:11,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 11:04:11,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:11,301 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:11,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-29 11:04:11], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 11:04:12,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:12,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:12,602 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:12,602 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:12,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-29 11:04:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,139 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,140 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:13,141 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:13,146 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,149 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,150 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:13,151 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,157 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,157 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,158 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:13,159 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:13,160 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:13,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-29 11:04:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:14,015 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:14,016 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:14,017 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:14,019 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:14,019 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:14,020 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:14,022 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:14,026 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:14,027 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:14,030 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:14,033 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:14,036 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:14,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:14,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:14,043 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:14,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:14,045 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:14,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:14,143 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:14,144 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:15,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:15,457 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:15,462 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:15,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-29 11:04:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:15,571 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:15,572 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:15,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:15,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:16,262 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:16,263 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:16,263 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:16,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-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:16,266 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:16,268 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:16,269 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:16,273 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:16,274 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:16,277 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:16,279 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:16,283 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:16,284 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:16,287 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:16,290 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:16,291 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:16,292 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:16,293 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:16,391 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:16,391 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:18,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:04:18,849 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:18,854 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:18,861 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:18,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:18,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04: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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:18,976 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:18,989 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:18,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-29 11:04:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:20,147 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:20,153 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:20,156 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:20,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:20,160 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:20,163 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:20,166 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:20,167 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:20,170 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:20,173 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:20,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:20,175 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:20,176 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:20,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-29 11:04:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:20,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:21,587 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:04:21,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,598 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:21,719 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:21,720 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:21,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-29 11:04:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:22,754 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:22,755 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:22,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:22,757 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:22,760 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:22,760 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:22,763 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:22,766 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:22,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:22,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:22,773 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:22,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-29 11:04:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:22,882 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:22,883 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:23,798 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:23,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:23,800 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:23,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:23,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:23,805 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:23,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:23,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:23,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-29 11:04:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,471 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:24,472 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,473 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:04:24,477 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:04:24,480 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:24,481 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,484 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,485 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:24,486 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,489 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,490 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:24,491 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,494 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,494 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:24,495 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,496 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,497 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:04:24,497 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,503 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:24,504 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:24,505 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:24,602 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:24,603 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:24,615 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:24,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-29 11:04:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:25,190 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:25,190 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:25,191 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:25,193 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:25,193 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:25,194 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:25,195 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:25,198 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:25,199 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:25,202 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:25,205 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:04:25,209 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:25,209 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:04:25,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-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:25,216 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:25,217 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:25,218 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:25,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:25,314 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:25,315 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:46,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:46,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:04:46,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-29 11:04:46], 访问了[com.greate.community.service.UserService.logout]. -2021-01-29 11:04:46,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:04:46,276 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:04:46,294 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:04:46,532 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:04:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:07,688 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:07,691 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.login]. -2021-01-29 11:05:07,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:07,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,712 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 11:05:07,713 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 11:05:07,714 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,717 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:07,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:07,726 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:07,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-29 11:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:13,346 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:13,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 11:05:13,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 11:05:13,348 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:13,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-29 11:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:13,453 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:13,465 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:13,466 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:14,352 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:14,352 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.FollowService.unfollow]. -2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:14,376 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:14,377 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:14,378 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 11:05:14,378 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 11:05:14,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 11:05:14,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 11:05:14,380 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:14,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:14,473 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:14,474 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:14,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-29 11:05:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:15,920 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:15,921 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:15,922 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.follow]. -2021-01-29 11:05:15,945 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:15,946 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:15,946 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:15,946 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-29 11:05:15,947 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. -2021-01-29 11:05:15,947 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.findFollowerCount]. -2021-01-29 11:05:15,947 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.FollowService.hasFollowed]. -2021-01-29 11:05:15,948 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:15,949 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:16,038 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:16,039 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:16,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-29 11:05:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:16,048 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,312 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:18,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 11:05:18,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 11:05:18,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,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-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,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-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,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-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:18,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:18,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:18,424 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:18,425 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:18,435 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:18,436 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:20,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:20,198 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:20,199 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 11:05:20,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:20,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:20,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-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 11:05:20,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-29 11:05:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 11:05:20,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:20,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:20,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 11:05:20,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 11:05:20,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 11:05:20,215 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:20,216 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:20,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:20,328 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:20,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:20,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:29,077 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:29,078 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:29,079 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 11:05:29,082 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:29,082 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:29,083 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 11:05:29,083 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 11:05:29,084 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:29,085 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:29,185 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:29,185 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:29,195 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:29,196 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:30,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-29 11:05:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:30,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-29 11:05:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:30,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-29 11:05:30], 访问了[com.greate.community.service.LikeService.like]. -2021-01-29 11:05:30,224 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:30], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:30,224 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:30], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 11:05:32,804 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:32,804 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:32,805 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.logout]. -2021-01-29 11:05:32,806 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:32,807 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:32,824 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:32,920 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:39,141 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:39,143 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.login]. -2021-01-29 11:05:39,165 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:39,167 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,168 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 11:05:39,171 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 11:05:39,173 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,174 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,174 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,178 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,178 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,181 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,181 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 11:05:39,182 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:39,184 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:39,283 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:39,284 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:39,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:39,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:40,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:40,370 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:40,370 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:05:40,374 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:05:40,377 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:05:40,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:40,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:40,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:40,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:40,386 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:40,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:40,486 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:40,487 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:40,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-29 11:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:40,498 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:41,193 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:41,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:41,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:41,196 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:41,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:41,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:41,199 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:41,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-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:41,204 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:41,207 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:41,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:41,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:41,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:41,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-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:41,221 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:41,222 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:41,222 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:41,223 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:41,325 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:41,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:49,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:49,291 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:49,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:49,295 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findNotices]. -2021-01-29 11:05:49,299 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:49,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:49,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 11:05:49,303 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:49,304 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:49,407 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:49,408 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:57,301 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:57,302 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:57,303 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:57,305 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:57,306 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:57,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:57,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:57,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:57,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:57,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:57,317 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:57,320 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:57,321 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:57,323 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:57,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:57,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:57,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:57,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:57,463 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:57,464 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:58,477 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:58,478 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:58,478 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:58,483 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findNotices]. -2021-01-29 11:05:58,487 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:58,487 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:58,488 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:58,488 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:58,489 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 11:05:58,491 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:58,492 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:58,593 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:58,594 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:59,808 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:59,809 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:59,810 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:59,812 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:59,813 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:59,815 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:59,816 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:59,819 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:59,820 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:59,823 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:59,825 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:05:59,829 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:05:59,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-29 11:05:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:05:59,942 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:05:59,942 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:05:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:00,846 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:00,847 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:00,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:00,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findNotices]. -2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:00,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-29 11:06:00], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 11:06:00,854 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:00,855 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:00,955 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:00,956 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:01,878 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:01,879 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:01,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:06:01,883 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:01,884 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:01,885 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:01,886 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:06:01,889 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:01,889 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:01,892 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:01,895 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:06:01,899 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:01,899 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:01,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:01,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:01,906 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:01,907 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:01,908 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:02,010 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:02,011 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:03,584 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:03,585 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:03,586 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 11:06:03,589 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 11:06:03,592 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 11:06:03,593 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:03,597 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:03,597 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:03,599 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:03,600 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:03,601 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:03,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-29 11:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:03,706 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:03,712 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:03,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:04,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:06:04,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:04,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:04,302 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:04,305 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 11:06:04,308 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 11:06:04,309 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 11:06:04,311 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:04,315 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:04,316 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:04,317 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 11:06:04,318 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 11:06:04,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-29 11:06:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 11:06:04,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 11:06:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 15:03:28,501 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 31716 (started by 19124 in E:\GreateCommunity) -2021-01-29 15:03:28,503 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 15:03:29,248 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:03:29,251 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:03:29,409 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 151ms. Found 1 repository interfaces. -2021-01-29 15:03:29,419 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:03:29,421 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:03:29,441 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. -2021-01-29 15:03:29,441 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. -2021-01-29 15:03:29,717 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 15:03:29,774 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 15:03:29,775 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 15:03:29,776 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:03:29,800 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-29 15:03:29,872 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$df6babff] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:03:29,907 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bb99a7c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:03:30,052 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-29 15:03:30,056 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-29 15:03:31,721 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded -2021-01-29 15:03:31,722 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] -2021-01-29 15:03:31,722 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] -2021-01-29 15:03:31,722 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] -2021-01-29 15:03:31,723 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] -2021-01-29 15:03:31,723 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] -2021-01-29 15:03:33,444 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 -2021-01-29 15:03:34,655 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 15:03:34,839 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 15:03:35,832 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 13:05:22,362 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 13:05:22,362 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 13:05:22,366 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 13:05:22,802 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:22,803 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:22,804 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:22,804 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:22,805 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:22,806 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:22], 访问了[com.greate.community.service.DiscussPostSerivce.updateStatus]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:26,012 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,012 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:05:26,015 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,018 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,018 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,019 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,019 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,019 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,024 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,025 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,025 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,026 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,026 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,027 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:26,027 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:26,028 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:26,122 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:26,123 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,125 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:26,126 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:26,127 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:26,137 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:26,138 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,138 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:26,139 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:26,140 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:26,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-31 13:05:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:26,140 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:26,141 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:34,558 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:34,559 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,559 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:34,560 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:34,560 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:34,561 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 13:05:34,563 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,563 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,564 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,564 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:34,567 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,568 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,568 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,569 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:34,570 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,571 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,571 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,571 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,572 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,572 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,573 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:34,574 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,574 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,575 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,575 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:34,576 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:34,577 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,578 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,578 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,579 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:34,580 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:34,581 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,582 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,583 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,584 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:34,586 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:34,587 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,587 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:34,588 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:34,588 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:34,590 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:34,591 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:34,592 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:34,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-31 13:05:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:34,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-31 13:05:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:34,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-31 13:05:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:34,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-31 13:05:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:34,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-31 13:05:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:40,052 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:40,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:40,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:40,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:40,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:40,055 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.LikeService.like]. +2021-01-31 13:05:40,075 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:40,075 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:41,200 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:41,201 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,201 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:41,202 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:41,202 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:41,203 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:05:41,204 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:05:41,206 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,206 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,207 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,207 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,207 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,208 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,208 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,209 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,209 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,209 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,210 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,210 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,210 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,211 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,211 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,211 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,212 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,212 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,212 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:41,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:41,214 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:41,340 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:41,341 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,342 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:41,342 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:41,343 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:41,344 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:41,345 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,346 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:41,347 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:41,347 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:41,349 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:41,351 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:41,352 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:41,353 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:41,354 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:41], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:43,158 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:43,159 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,159 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:43,160 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:43,160 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:43,161 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 13:05:43,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-31 13:05:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 13:05:43,165 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,166 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,166 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,167 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,167 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,168 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,168 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,169 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,169 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,170 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,170 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,170 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,171 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,171 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,172 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,172 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,173 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,173 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,173 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,174 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:43,174 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:43,176 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:43,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:43,266 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,267 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:43,268 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:43,269 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:43,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-31 13:05:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:43,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-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,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-31 13:05:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:43,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-31 13:05:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:43,275 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:43,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-31 13:05:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:43,276 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:43,276 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:43,277 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:43,277 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:51,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:51,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:51,162 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:51,162 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 13:05:51,163 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 13:05:51,164 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,165 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,165 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,165 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:51,167 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,169 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,170 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,170 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:51,173 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,175 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,176 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,177 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,178 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:51,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,179 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,180 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:51,181 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,182 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,182 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,182 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:51,183 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,185 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,185 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,186 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:51,187 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:51,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-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,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-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,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-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,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-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:51,193 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:51,194 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,194 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 13:05:51,195 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 13:05:51,195 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 13:05:51,196 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 13:05:51,197 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 13:05:51,198 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 13:05:51,298 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 13:05:51,299 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 13:05:51,300 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 13:05:51,301 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 13:05:51,302 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 13:05:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:03,185 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 19020 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 17:00:03,188 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 17:00:03,231 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 17:00:03,231 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 17:00:04,050 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:00:04,052 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:00:04,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 57ms. Found 1 repository interfaces. +2021-01-31 17:00:04,123 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:00:04,125 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:00:04,140 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 17:00:04,140 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. +2021-01-31 17:00:04,461 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 17:00:04,513 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 17:00:04,514 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:00:04,514 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:00:04,515 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:00:04,516 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 17:00:04,516 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:00:04,516 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:00:04,516 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:00:04,542 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-31 17:00:04,569 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$e1dd7ecf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:00:04,614 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$e2b6d4c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:00:04,747 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-31 17:00:04,749 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-31 17:00:05,137 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 17:00:05,149 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 17:00:05,156 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 17:00:05,157 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 17:00:05,263 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 17:00:05,263 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2032 ms +2021-01-31 17:00:06,481 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 17:00:06,482 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 17:00:06,483 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 17:00:06,483 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 17:00:06,483 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 17:00:06,483 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 17:00:07,491 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 17:00:10,309 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 17:00:10,563 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 17:00:10,688 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 17:00:11,334 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 17:00:11,484 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 17:00:11,553 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 17:00:11,561 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 17:00:11,562 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 17:00:11,567 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 17:00:11,569 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 17:00:11,570 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612083611554' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 17:00:11,570 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 17:00:11,570 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 17:00:11,571 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@171a3033 +2021-01-31 17:00:11,759 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 77afd77c-fbcf-43ac-9424-bae370c4eb06 + +2021-01-31 17:00:11,830 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 17:00:11,881 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6dbcd845, org.springframework.security.web.context.SecurityContextPersistenceFilter@71da8ed3, org.springframework.security.web.header.HeaderWriterFilter@1634ff06, org.springframework.security.web.authentication.logout.LogoutFilter@62a3ac87, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@77ca413f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@600cb283, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@289e11a8, org.springframework.security.web.session.SessionManagementFilter@6f924735, org.springframework.security.web.access.ExceptionTranslationFilter@7cee4e15, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@537eec5e] +2021-01-31 17:00:12,022 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -1811,10 +4888,10 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 15:03:35,892 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:03:35,892 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:03:35,988 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:03:36,003 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 17:00:12,072 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:12,073 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:12,189 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:12,210 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -1881,10 +4958,10 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 15:03:36,008 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:03:36,008 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:03:36,010 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:03:36,014 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 17:00:12,216 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:12,217 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:12,219 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:00:12,224 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -1951,15 +5028,15 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 15:03:36,020 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:03:36,021 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:03:36,021 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:03:36,022 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:03:36,025 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:03:36,027 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:03:36,027 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:03:36,028 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:03:36,033 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 17:00:12,232 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:12,233 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:12,235 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:12,236 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:00:12,237 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:12,240 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:00:12,241 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:00:12,241 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:00:12,241 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -2026,58 +5103,10 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 15:03:36,039 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:03:36,039 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:03:36,039 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:03:36,046 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:03:36,047 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:03:36,048 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:03:36,049 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:03:36,049 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:03:36,052 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 29 -2021-01-29 15:03:36,058 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] -2021-01-29 15:03:36,058 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 7.925 seconds (JVM running for 8.668) -2021-01-29 15:03:36,062 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] -2021-01-29 15:03:36,231 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-29 15:03:36,448 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-29 15:03:36,682 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:03:36,683 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:03:36,692 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:03:36,693 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:03:36,696 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-29 15:03:37,718 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... -2021-01-29 15:03:37,722 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. -2021-01-29 15:06:37,151 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 11484 (started by 19124 in E:\GreateCommunity) -2021-01-29 15:06:37,153 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 15:06:37,885 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:06:37,887 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:06:38,026 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 134ms. Found 1 repository interfaces. -2021-01-29 15:06:38,040 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:06:38,043 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:06:38,071 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. -2021-01-29 15:06:38,072 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 10ms. Found 0 repository interfaces. -2021-01-29 15:06:38,446 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 15:06:38,517 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 15:06:38,517 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 15:06:38,518 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:06:38,591 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-29 15:06:38,640 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$bc6ef8e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:06:38,690 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$e8bce763] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:06:38,861 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-29 15:06:38,866 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-29 15:06:40,643 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded -2021-01-29 15:06:40,644 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] -2021-01-29 15:06:40,644 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] -2021-01-29 15:06:40,644 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] -2021-01-29 15:06:40,645 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] -2021-01-29 15:06:40,645 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] -2021-01-29 15:06:42,485 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 -2021-01-29 15:06:43,319 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 15:06:43,519 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 15:06:44,606 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 17:00:12,247 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:12,248 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:12,248 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:00:12,249 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -2144,10 +5173,15 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 15:06:44,668 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:06:44,668 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:06:44,776 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:06:44,787 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: +2021-01-31 17:00:12,254 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:12,254 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:00:12,254 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:12,255 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:12,255 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:00:12,255 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:00:12,256 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:00:12,261 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:12,263 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: auto.commit.interval.ms = 3000 auto.offset.reset = latest bootstrap.servers = [localhost:9092] @@ -2214,1491 +5248,112 @@ Error starting ApplicationContext. To display the conditions report re-run your ssl.truststore.type = JKS value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer -2021-01-29 15:06:44,791 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:06:44,791 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:06:44,793 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:06:44,797 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:06:44,803 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:06:44,803 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:06:44,803 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:06:44,804 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:06:44,807 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:06:44,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:06:44,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:06:44,807 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:06:44,814 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:06:44,819 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 32 -2021-01-29 15:06:44,819 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:06:44,819 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:06:44,820 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:06:44,821 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] -2021-01-29 15:06:44,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:06:44,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] -2021-01-29 15:06:44,826 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:06:44,827 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:06:44,828 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:06:44,829 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:06:44,835 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 8.083 seconds (JVM running for 8.886) -2021-01-29 15:06:45,017 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-29 15:06:45,237 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-29 15:06:45,793 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:06:45,794 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:06:45,799 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:06:45,800 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:06:45,802 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-29 15:06:46,828 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... -2021-01-29 15:06:46,836 INFO [Thread-3] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. -2021-01-29 15:18:05,742 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 22720 (started by 19124 in E:\GreateCommunity) -2021-01-29 15:18:05,743 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 15:18:06,371 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:18:06,373 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:18:06,509 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 129ms. Found 1 repository interfaces. -2021-01-29 15:18:06,519 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:18:06,520 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:18:06,541 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. -2021-01-29 15:18:06,542 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 15ms. Found 0 repository interfaces. -2021-01-29 15:18:06,829 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:18:06,886 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 15:18:06,887 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 15:18:06,887 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:18:06,947 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-29 15:18:06,987 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$871421a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:18:07,029 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$34bf3097] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:18:07,190 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-29 15:18:07,193 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-29 15:18:09,070 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded -2021-01-29 15:18:09,072 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] -2021-01-29 15:18:09,072 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] -2021-01-29 15:18:09,072 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] -2021-01-29 15:18:09,073 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] -2021-01-29 15:18:09,073 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] -2021-01-29 15:18:11,043 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 -2021-01-29 15:18:11,812 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 15:18:11,978 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 15:18:12,860 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:18:12,944 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:18:12,944 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:18:13,049 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:18:13,060 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:18:13,064 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:18:13,065 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:18:13,067 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:18:13,071 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:18:13,078 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:18:13,078 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:18:13,078 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:18:13,079 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:18:13,083 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:18:13,084 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:18:13,085 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:18:13,085 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:18:13,092 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:18:13,097 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:18:13,098 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:18:13,099 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:18:13,099 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 35 -2021-01-29 15:18:13,104 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] -2021-01-29 15:18:13,106 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:18:13,107 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] -2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:18:13,108 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:18:13,115 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 7.695 seconds (JVM running for 8.46) -2021-01-29 15:18:13,516 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:18:13,516 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:18:13,523 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:18:13,523 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:18:13,527 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-29 15:31:45,160 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 17364 (started by 19124 in E:\GreateCommunity) -2021-01-29 15:31:45,161 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 15:31:45,892 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:31:45,894 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:31:46,013 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 114ms. Found 1 repository interfaces. -2021-01-29 15:31:46,022 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 15:31:46,024 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 15:31:46,037 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. -2021-01-29 15:31:46,037 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. -2021-01-29 15:31:46,327 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:31:46,386 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 15:31:46,387 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 15:31:46,387 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 15:31:46,412 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-29 15:31:46,451 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$980b6461] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:31:46,496 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c45952de] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 15:31:46,686 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-29 15:31:46,688 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-29 15:31:48,475 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded -2021-01-29 15:31:48,476 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] -2021-01-29 15:31:48,476 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] -2021-01-29 15:31:48,477 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] -2021-01-29 15:31:48,477 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] -2021-01-29 15:31:48,477 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] -2021-01-29 15:31:50,234 INFO [main] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 -2021-01-29 15:31:50,987 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 15:31:51,143 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 15:31:52,018 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:31:52,072 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:31:52,072 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:31:52,168 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:31:52,179 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:31:52,183 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:31:52,183 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:31:52,185 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:31:52,189 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:31:52,195 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:31:52,196 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:31:52,196 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:31:52,197 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:31:52,200 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:31:52,200 INFO [main] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:31:52,200 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:31:52,201 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:31:52,206 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 15:31:52,209 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 15:31:52,209 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 15:31:52,209 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 15:31:52,211 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 38 -2021-01-29 15:31:52,213 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [test-0] -2021-01-29 15:31:52,215 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 15:31:52,215 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 15:31:52,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [test-0] -2021-01-29 15:31:52,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 15:31:52,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 15:31:52,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group -2021-01-29 15:31:52,224 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:59] Started ElasticsearchTests in 7.402 seconds (JVM running for 8.113) -2021-01-29 15:31:52,458 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:31:52,459 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService -2021-01-29 15:31:52,467 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:31:52,467 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [KafkaMessageListenerContainer.java:840] Consumer stopped -2021-01-29 15:31:52,470 INFO [Thread-3] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:208] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-29 16:25:05,011 INFO [main] c.g.c.ElasticsearchTests [StartupInfoLogger.java:50] Starting ElasticsearchTests on LAPTOP-5SJBI05C with PID 27080 (started by 19124 in E:\GreateCommunity) -2021-01-29 16:25:05,012 INFO [main] c.g.c.ElasticsearchTests [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 16:25:05,863 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 16:25:05,867 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 16:25:06,025 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 151ms. Found 1 repository interfaces. -2021-01-29 16:25:06,036 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 16:25:06,038 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 16:25:06,062 INFO [main] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. -2021-01-29 16:25:06,062 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 8ms. Found 0 repository interfaces. -2021-01-29 16:25:06,383 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 16:25:06,445 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 16:25:06,446 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 16:25:06,446 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 16:25:06,446 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 16:25:06,447 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 16:25:06,447 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 16:25:06,523 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-29 16:25:06,570 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$980b6461] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 16:25:06,617 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c45952de] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 16:25:06,831 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-29 16:25:06,835 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-29 16:25:07,001 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 17424 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-29 16:25:07,004 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default -2021-01-29 16:25:07,081 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-29 16:25:07,081 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-29 16:25:07,695 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 16:25:07,697 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 16:25:07,746 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 46ms. Found 1 repository interfaces. -2021-01-29 16:25:07,755 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-29 16:25:07,756 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. -2021-01-29 16:25:07,769 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. -2021-01-29 16:25:07,769 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. -2021-01-29 16:25:08,037 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-29 16:25:08,081 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-29 16:25:08,081 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-29 16:25:08,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-29 16:25:08,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 16:25:08,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-29 16:25:08,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-29 16:25:08,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 16:25:08,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-29 16:25:08,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-29 16:25:08,129 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$fea5e9cb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 16:25:08,165 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2af3d848] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2021-01-29 16:25:08,281 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-29 16:25:08,283 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-29 16:25:08,291 INFO [main] o.e.p.PluginsService [PluginsService.java:190] no modules loaded -2021-01-29 16:25:08,292 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] -2021-01-29 16:25:08,293 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] -2021-01-29 16:25:08,293 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] -2021-01-29 16:25:08,293 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] -2021-01-29 16:25:08,294 INFO [main] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] -2021-01-29 16:25:08,687 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) -2021-01-29 16:25:08,699 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-29 16:25:08,709 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-29 16:25:08,709 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] -2021-01-29 16:25:08,825 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-29 16:25:08,825 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1744 ms -2021-01-29 16:25:09,761 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded -2021-01-29 16:25:09,762 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] -2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] -2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] -2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] -2021-01-29 16:25:09,763 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] -2021-01-29 16:25:10,930 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 -2021-01-29 16:25:11,936 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 -2021-01-29 16:25:12,220 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-29 16:25:12,330 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index -2021-01-29 16:25:12,970 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 16:25:13,008 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 16:25:13,008 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 16:25:13,110 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 16:25:13,278 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 16:25:13,282 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 16:25:13,283 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 16:25:13,286 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 16:25:13,290 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 16:25:13,296 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 16:25:13,296 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 16:25:13,297 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 16:25:13,298 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 16:25:13,300 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 16:25:13,302 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 16:25:13,303 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 16:25:13,303 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 16:25:13,310 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: - auto.commit.interval.ms = 3000 - auto.offset.reset = latest - bootstrap.servers = [localhost:9092] - check.crcs = true - client.id = - 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 - heartbeat.interval.ms = 3000 - interceptor.classes = [] - internal.leave.group.on.close = true - 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 - send.buffer.bytes = 131072 - session.timeout.ms = 10000 - ssl.cipher.suites = null - ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] - ssl.endpoint.identification.algorithm = https - ssl.key.password = null - ssl.keymanager.algorithm = SunX509 - ssl.keystore.location = null - ssl.keystore.password = null - ssl.keystore.type = JKS - ssl.protocol = TLS - 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-29 16:25:13,314 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 16:25:13,314 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 16:25:13,315 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService -2021-01-29 16:25:13,321 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 41 -2021-01-29 16:25:13,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] -2021-01-29 16:25:13,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 16:25:13,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) -2021-01-29 16:25:13,325 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] -2021-01-29 16:25:13,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] -2021-01-29 16:25:13,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group -2021-01-29 16:25:13,331 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-29 16:25:13,342 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.Fetcher [Fetcher.java:601] [Consumer clientId=consumer-2, groupId=test-consumer-group] Resetting offset for partition publish-0 to offset 0. -2021-01-29 16:25:13,343 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] -2021-01-29 16:25:13,347 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-29 16:25:13,349 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 6.745 seconds (JVM running for 7.743) -2021-01-29 16:25:16,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing -2021-01-29 16:25:16,330 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] -2021-01-29 16:25:16,331 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] -2021-01-29 16:25:16,331 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group -2021-01-29 16:25:16,372 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 42 -2021-01-29 16:25:16,373 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] -2021-01-29 16:25:16,373 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 42 -2021-01-29 16:25:16,373 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] -2021-01-29 16:25:16,375 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] -2021-01-29 16:25:16,375 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] -2021-01-29 16:25:42,024 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-29 16:25:42,024 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' -2021-01-29 16:25:42,033 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 9 ms -2021-01-29 16:25:42,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:42,143 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library -2021-01-29 16:25:42,145 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library -2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:42,260 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-29 16:25:42,405 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:42,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:42,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-29 16:25:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:42,905 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:45,319 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:45,322 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:45,329 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 16:25:45,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 16:25:45,340 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 16:25:45,341 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:45,345 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:45,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:45,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:45,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:45,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:45,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-29 16:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:45,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-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:45,493 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:45,494 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:48,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 16:25:48,056 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,085 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:48,085 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:48,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-29 16:25:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:48,192 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:48,193 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:48,204 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:48,204 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:49,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,787 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,787 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,789 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,798 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:49,800 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,804 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,805 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,805 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:49,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:49,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:49,830 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:49,833 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:49,943 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:49,944 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:49,949 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:49,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-29 16:25:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,299 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:51,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 16:25:51,302 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 16:25:51,306 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,306 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,307 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,308 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,309 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,309 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,310 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,310 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,311 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,312 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,312 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,313 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,314 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,315 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,315 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,316 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,316 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:51,317 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:51,318 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:51,413 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:51,415 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:51,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-29 16:25:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:51,422 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,525 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,531 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,534 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,535 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:53,539 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,539 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:53,545 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,545 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,549 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,549 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:53,551 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,552 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,552 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,553 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:53,554 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:53,555 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,555 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,556 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,556 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:53,557 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:53,558 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,559 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:25:53,559 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:25:53,560 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:25:53,561 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:25:53,562 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:25:53,563 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:25:53,664 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:53,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-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:25:53,676 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:25:53,677 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:25:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:26:05,801 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:05,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-29 16:26:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:15,424 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:15,425 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:15,426 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:26:15,427 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:15,429 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:15,429 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:26:15,429 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:26:15,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-29 16:26:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:26:15,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-29 16:26:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:26:15,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:15,537 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:15,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-29 16:26:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:15,549 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:18,731 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:18,733 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:18,736 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:26:18,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-29 16:26:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:26:18,739 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:26:18,740 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:26:18,836 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:18,838 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,883 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:31,883 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,885 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 16:26:31,887 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 16:26:31,889 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,889 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,894 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,894 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,894 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,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-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,896 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,896 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,896 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:31,897 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:26:31,897 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:26:31,898 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:26:32,030 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:32,031 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:32,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:32,043 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:33,455 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:33,456 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:26:33,457 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:26:33,463 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:26:33,464 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:26:33,569 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:26:33,570 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:26:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:11,447 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:11,448 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:11], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:11,464 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:11], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. -2021-01-29 16:27:11,564 INFO [http-nio-8080-exec-5] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: +2021-01-31 17:00:12,268 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:12,268 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:12,268 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:00:12,269 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 17:00:12,274 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:12,275 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:00:12,276 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:00:12,276 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:00:12,277 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:00:12,280 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:00:12,285 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612083611554 started. +2021-01-31 17:00:12,286 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:00:12,291 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:00:12,300 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 93 +2021-01-31 17:00:12,300 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 93 +2021-01-31 17:00:12,300 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 93 +2021-01-31 17:00:12,305 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:00:12,305 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 17:00:12,305 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:00:12,305 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:00:12,311 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:00:12,311 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:00:12,311 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:00:12,327 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 17:00:12,331 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.454 seconds (JVM running for 10.293) +2021-01-31 17:00:12,446 INFO [communityScheduler_Worker-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 17:00:12,449 INFO [communityScheduler_Worker-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 17:00:12,577 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:60] [任务取消] 没有需要刷新的帖子 +2021-01-31 17:00:20,133 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 17:00:20,133 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 17:00:20,141 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 8 ms +2021-01-31 17:00:20,165 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:20,219 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:20,264 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:20,296 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:20,526 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:20,531 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:20,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-31 17:00:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:20,555 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:20,556 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:20,558 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:20,561 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:20,562 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:20,972 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:20,975 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:20,976 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:20,978 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:20,980 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:22,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:22,248 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:22,253 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:22,263 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:00:22,268 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:00:22,273 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,277 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,279 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,283 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,286 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,287 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,290 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,290 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,291 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,292 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,294 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,295 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,296 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,296 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,297 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,297 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,298 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,299 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,299 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:22,300 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:22,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:22,412 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:22,418 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:22,419 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:22,420 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,420 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:22,422 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:22,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-31 17:00:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:22,424 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:32,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-31 17:00:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:32,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-31 17:00:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:32,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-31 17:00:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:32,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-31 17:00:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:32,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-31 17:00:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:32,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-31 17:00:32], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. +2021-01-31 17:00:32,209 INFO [http-nio-8080-exec-1] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: acks = 1 batch.size = 16384 bootstrap.servers = [localhost:9092] @@ -3760,406 +5415,6973 @@ Error starting ApplicationContext. To display the conditions report re-run your transactional.id = null value.serializer = class org.apache.kafka.common.serialization.StringSerializer -2021-01-29 16:27:11,580 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 -2021-01-29 16:27:11,580 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 -2021-01-29 16:27:11,585 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w -2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 16:27:13,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-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,701 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,701 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,702 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,702 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,705 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,706 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:13,710 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:13,710 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:13,711 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:13,997 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:13,999 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27: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-29 16:27:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:14,005 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:17,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:17,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:17,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:27:17,298 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:17,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:17,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:17,300 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:17,301 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:17,302 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:17,403 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:17,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-29 16:27:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:18,774 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:18,775 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:18,776 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.LikeService.like]. -2021-01-29 16:27:18,800 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:18,800 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:26,234 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:26,235 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:26,246 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.addComment]. -2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. -2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:27:26,258 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:26,260 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:26,287 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:26,288 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:26,289 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:27:26,291 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:26,291 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:26,292 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:26,292 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:26,293 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:26,294 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:26,294 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:26,295 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:26,296 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:27:26,298 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:26,299 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:26,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-29 16:27:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:28,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:28,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:28,209 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.LikeService.like]. -2021-01-29 16:27:28,213 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:28,214 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:33,618 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:33,618 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:33,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-29 16:27:33], 访问了[com.greate.community.service.CommentService.addComment]. -2021-01-29 16:27:33,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-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentById]. -2021-01-29 16:27:33,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-29 16:27:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:33,628 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:33,648 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:33,649 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:33,650 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:27:33,651 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:33,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:33,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:33,652 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:33,654 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:33,654 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:33,655 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:33,655 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:33,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:33,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:33,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:33,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:33,660 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:27:33,662 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:33,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:33,769 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:33,770 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,596 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:38,598 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.CommentService.addComment]. -2021-01-29 16:27:38,604 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentById]. -2021-01-29 16:27:38,606 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:38,607 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:38,625 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:38,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-29 16:27:38], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:38,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:38,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:40,769 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:40,769 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:40,770 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.LikeService.like]. -2021-01-29 16:27:40,774 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:40,775 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:41,475 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:41,476 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:41,476 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.LikeService.like]. -2021-01-29 16:27:41,481 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:27:41,481 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-29 16:27:43,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:43,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:43,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-29 16:27:43,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-29 16:27:43,356 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-29 16:27:43,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:43,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:43,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:43,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:43,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:43,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:43,464 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:43,465 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:43,472 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:43,472 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:45,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:45,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:45,778 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:45,782 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:45,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:45,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:45,785 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:45,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:45,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:45,792 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:45,796 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:45,800 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:45,801 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:45,804 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:45,807 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:45,808 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:45,826 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:45,831 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:45,928 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:45,929 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,028 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:48,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,031 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:48,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findNotices]. -2021-01-29 16:27:48,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,038 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:48,040 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 16:27:48,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:48,045 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:48], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:48,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-29 16:27:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:48,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-29 16:27:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:51,787 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:51,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:51,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:51,790 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:51,791 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:51,792 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:51,795 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:51,799 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:51,800 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:51,802 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:51,805 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:51,810 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:51,811 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:51,815 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:51,818 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:51,819 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:51,820 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:51,821 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:52,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:52,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:53,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:53,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findNotices]. -2021-01-29 16:27:53,573 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:53,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.readMessage]. -2021-01-29 16:27:53,581 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:53,582 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:53,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-29 16:27:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:53,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-29 16:27:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:55,112 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:55,113 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:55,114 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:55,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:55,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:55,117 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:55,131 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLatestNotice]. -2021-01-29 16:27:55,135 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeCount]. -2021-01-29 16:27:55,140 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:27:55,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-29 16:27:55], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:27:55,383 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:27:55,384 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,363 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:03,364 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,365 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:28:03,378 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,379 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,380 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,380 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,381 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,382 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,382 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,382 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,383 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,383 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,384 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,384 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,384 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,385 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,385 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,386 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:03,386 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:03,387 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:28:03,388 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:28:03,570 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:03,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,777 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:13,778 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,779 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:28:13,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,790 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,791 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,791 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,792 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,792 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,794 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,795 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,795 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,795 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:13,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:13,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:28:13,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:28:13,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-29 16:28:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:13,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-29 16:28:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,332 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:17,333 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,334 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:28:17,343 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,343 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,345 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,345 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,346 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,348 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,348 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,349 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,349 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,350 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,351 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:17,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:17,353 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:28:17,354 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:28:17,449 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:17,450 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:18,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:18,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:18,744 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:28:18,750 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:18,751 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:18,752 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:28:18,754 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:28:18,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-29 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:18,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-29 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,227 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:22,228 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,229 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:22,242 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,243 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:22,243 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28: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-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,247 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:22,248 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:28:22,249 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:28:22,342 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:22,343 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,776 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:26,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-29 16:28:26,779 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-29 16:28:26,781 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,782 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,783 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,785 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,785 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,786 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,786 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,787 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,787 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,787 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,788 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,788 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-29 16:28:26,791 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-29 16:28:26,792 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. -2021-01-29 16:28:26,918 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:26,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-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-29 16:28:26,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-29 16:28:26,924 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-29 16:28:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:32,221 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:00:32,222 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:00:32,226 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:00:34,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:34,277 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,277 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:34,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:34,279 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:34,279 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:00:34,282 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:00:34,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,291 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,291 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,294 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,295 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,295 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,297 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,297 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,298 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,298 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,299 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:34,300 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:34,301 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:34,402 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:34,404 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,406 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:34,407 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:34,408 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:34,412 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:34,413 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:34,413 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,414 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:34,414 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:34,415 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:34,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-31 17:00:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:34,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:34,416 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:34,417 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:34], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:38,649 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:38,650 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:38,651 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:38], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:38,652 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:38], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:38,652 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:38], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:38,653 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:38], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. +2021-01-31 17:00:40,692 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:40,692 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,693 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:40,694 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:40,695 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:40,697 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:00:40,699 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:00:40,702 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,702 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,703 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,704 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,708 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,708 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,709 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,709 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,710 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,711 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,711 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,712 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,713 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,714 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:40,715 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:40,716 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:40,809 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:40,812 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,813 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:40,815 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:40,816 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:40,818 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:40,818 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:40,819 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,819 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:40,820 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:40,821 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:40,822 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:40,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-31 17:00:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:44,663 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:44,664 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:44,665 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:44,665 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:44,666 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:44,667 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:44], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. +2021-01-31 17:00:46,702 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:46,703 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,704 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:46,706 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:46,706 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:46,707 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:00:46,709 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:00:46,711 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,711 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,712 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,712 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,713 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,713 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,714 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,714 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,714 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,715 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,715 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,716 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,716 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,717 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,717 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,718 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,718 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,718 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,719 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,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-31 17:00:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:46,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-31 17:00:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:46,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-31 17:00:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:46,817 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:46,818 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,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-31 17:00:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:46,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-31 17:00:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:46,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-31 17:00:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:46,830 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:46,830 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:46,831 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,831 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:46,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:46,833 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:46,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:46,833 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:46,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:46,834 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:50,775 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:50,777 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:50,778 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:50,778 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:50,779 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:50,784 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:00:50,786 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:50,787 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:50,787 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:00:50,788 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:00:50,793 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:50,794 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:00:51,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-31 17:00:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:51,991 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:51,992 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:51,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-31 17:00:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:51,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-31 17:00:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:51,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-31 17:00:51], 访问了[com.greate.community.service.LikeService.like]. +2021-01-31 17:00:52,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-31 17:00:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:00:52,018 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:00:55,977 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:55,978 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:55,979 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:55,979 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:55,980 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:55,986 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:00:55,993 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:55], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:00:56,035 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:00:56,036 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:00:56,037 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:00:56,037 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:00:56,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-31 17:00:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:00:56,040 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:00:56,042 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:00:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:03,524 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:03,525 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:03,525 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:03,526 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:03,526 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:03,527 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:02:03,530 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:03,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-31 17:02:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:03,532 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:03,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-31 17:02:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:03,535 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:03,536 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:07,036 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:07,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,038 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:07,038 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:07,039 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:07,040 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:02:07,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:02:07,043 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,043 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,045 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,045 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,049 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,050 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,050 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,051 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,051 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,052 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,052 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,054 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,054 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:07,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:07,056 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:07,213 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:07,214 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,216 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:07,217 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:07,219 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:07,223 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:07,225 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,226 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:07,227 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:07,227 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:07,228 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:07,228 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:07,229 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:07,229 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:07,230 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:09,729 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:09,730 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,730 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:09,731 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:09,731 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:09,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:02:09,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,736 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,736 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:09,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,740 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:09,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,742 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,742 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,743 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,743 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:02:09,746 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,746 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,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-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,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-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:09,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-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:02:09,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,750 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,750 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:09,752 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:02:09,754 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,754 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,755 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,755 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:09,757 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:02:09,758 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,758 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:09,759 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:02:09,759 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:02:09,760 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:02:09,761 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:09,763 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:09,931 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:09,932 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:09,933 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:09,933 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:09,935 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:09], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:14,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:14,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:14,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:14,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:14,724 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:14,726 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:02:14,728 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:02:14,767 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:14,768 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:14,769 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:14,770 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:14,772 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:14,774 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:14,775 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:18,000 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:18,001 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:18,002 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:18,003 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:18,003 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:18,004 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:18,005 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-31 17:02:18,006 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-31 17:02:18,010 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-31 17:02:18,010 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-31 17:02:18,011 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:18,012 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:19,822 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:19,823 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:19,824 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:19,824 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:19,825 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:19,825 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-31 17:02:19,829 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-31 17:02:19,833 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:19,835 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:19,837 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:19,839 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:20,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-31 17:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:20,753 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:20,754 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:20,755 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:20,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:20,756 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:02:20,758 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:02:20,761 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:20,761 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:02:20,762 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:20,764 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:02:20,765 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:20,766 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:20,767 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:20,769 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:22,972 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 17:02:22,975 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:22,976 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 17:02:22,984 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:22,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-31 17:02:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:24,145 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:24,146 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,146 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:24,147 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:24,148 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:24,149 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:02:24,151 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:02:24,153 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,153 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,154 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,154 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,155 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,155 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,156 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,156 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,156 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,157 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,157 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,158 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,158 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,158 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,159 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,159 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:02:24,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:02:24,163 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:02:24,313 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:24,314 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,316 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:24,317 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:24,318 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:24,327 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:24,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:02:24,328 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:02:24,329 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:24,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:02:24,330 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:24,330 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:02:24,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:02:24,331 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:02:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:06,240 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:06,241 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:06,241 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:06,242 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:06,242 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:06,243 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:03:06,245 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:06,245 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:06,246 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:03:06,246 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:03:06,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:03:06,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-31 17:03:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:03:10,058 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:10,059 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:10,060 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:10,060 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:10,062 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:10,063 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:03:10,065 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:10], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:03:10,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-31 17:03:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:03:15,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:15,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:15,200 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:15,200 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:15,201 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:15,201 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:03:15,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-31 17:03:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:15,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:15,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:03:15,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:03:15,207 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:03:15,209 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:03:20,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-31 17:03:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:20,400 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:20,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-31 17:03:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:20,402 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:20,402 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:20,403 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:03:20,406 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:03:20,450 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:20,451 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:20,452 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:20,453 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:20,453 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:20,455 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:03:20,456 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:03:51,913 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:51,915 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:51,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:51,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:51,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:51,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:03:51,920 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:51,920 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:51,921 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:03:51,921 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:03:51,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:03:51,924 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:03:54,286 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:54,287 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:54,288 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:54,288 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:54,289 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:54,290 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:54], 访问了[com.greate.community.service.DiscussPostSerivce.updateType]. +2021-01-31 17:03:59,577 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:59,578 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,578 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:59,579 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:59,579 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:59,579 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:03:59,581 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:03:59,582 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,583 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,583 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,584 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,585 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,586 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,586 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,587 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,587 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,587 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,588 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,588 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,589 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,589 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,589 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,590 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,590 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,590 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,591 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,591 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:03:59,591 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:03:59,593 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:03:59,749 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:59,750 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,751 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:59,753 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:59,754 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:59,763 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:59,763 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:03:59,764 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,764 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:03:59,764 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:59,764 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:03:59,765 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:59,765 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:03:59,765 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:03:59,765 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:03:59], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:05,621 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:05,622 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:05,624 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:04:05,628 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,629 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,629 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,630 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,630 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,631 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,632 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,632 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,633 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,633 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,634 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,634 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,635 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,635 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,635 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,637 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,637 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:05,638 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:05,639 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:05,772 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:05,773 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,773 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:05,774 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:05,775 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:05,781 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:05,783 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:05,784 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:05,784 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:05,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-31 17:04:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:05,785 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:05,785 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:13,451 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:13,451 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:13,453 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:13,453 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:13,453 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:13,454 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:04:13,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-31 17:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:13,457 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:13,457 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:13,458 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:04:13,460 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:13,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-31 17:04:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:14,613 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:14,614 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:14,615 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:14,615 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:14], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:14,616 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:14], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:14,616 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:14], 访问了[com.greate.community.service.DiscussPostSerivce.updateStatus]. +2021-01-31 17:04:16,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-31 17:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:16,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-31 17:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:16,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-31 17:04:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:16,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-31 17:04:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:16,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-31 17:04:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:16,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-31 17:04:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:04:17,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-31 17:04:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,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-31 17:04:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:17,009 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:17,010 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:17,172 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:17,173 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,175 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:17,176 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:17,178 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:17,182 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:17,182 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:17,183 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,183 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:17,184 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:17,184 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:17,185 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:17,185 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:17,185 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:17,185 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:18,318 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:18,319 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,319 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:18,320 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:18,320 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:18,321 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:04:18,322 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:04:18,325 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,326 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,327 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,328 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,330 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,330 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,330 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,332 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,332 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,332 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,333 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,333 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,334 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:18,334 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:18,335 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:18,427 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:18,428 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,428 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:18,429 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:18,430 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:18,433 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:18,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:18,435 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:18,436 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:18,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-31 17:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:18,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-31 17:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:18,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-31 17:04:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:18,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-31 17:04:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:18,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-31 17:04:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:24,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:24,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:24,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:24,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:24,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:24,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:04:24,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:24,104 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:24,104 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:24,105 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:04:24,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:24,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.LikeService.like]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:25,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-31 17:04:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:51,570 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:51,571 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,571 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:51,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-31 17:04:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:51,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-31 17:04:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:51,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-31 17:04:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:04:51,574 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:04:51,576 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,577 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,578 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,579 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,579 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,580 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,580 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,580 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,581 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,581 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,583 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,583 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,584 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,584 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,584 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:51,586 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:51,587 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:51,689 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:51,690 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,691 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:51,691 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:51,692 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:51,702 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:51,702 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:51,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,703 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:51,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:51,703 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:51,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:51,703 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:51,704 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:51,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:52,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:52,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:04:52,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,701 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,701 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:52,704 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:52,838 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:52,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-31 17:04:52], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:52,840 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:52], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:56,855 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:56,856 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,856 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:56,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:04:56,897 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:04:56,901 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:04:56,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-31 17:04:56], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:04:56,910 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:04:56,911 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:04:57,009 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:04:57,009 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:04:57,010 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:04:57,011 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:04:57,012 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:04:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:05:03,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-31 17:05:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:05:03,440 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:05:03,440 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,441 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:05:03,441 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:05:03,442 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:05:03,442 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:05:03,444 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,444 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:05:03,445 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:05:03,445 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:05:03,447 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,447 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:05:03,447 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:05:03,448 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:05:03,449 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,450 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,450 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:05:03,450 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:05:03,451 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,451 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,451 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:05:03,452 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:05:03,452 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,453 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,453 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:05:03,454 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:05:03,454 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,455 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,455 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:05:03,456 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:05:03,457 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:05:03,458 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:05:03,459 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:05:03,555 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:05:03,556 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:05:03,557 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:05:03,558 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:05:03,559 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:05:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:05:10,381 INFO [communityScheduler_Worker-2] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:64] [任务开始] 正在刷新帖子分数: 3 +2021-01-31 17:06:07,851 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 540 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 17:06:07,854 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 17:06:07,886 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 17:06:07,886 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 17:06:08,486 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:06:08,488 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:06:08,537 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 47ms. Found 1 repository interfaces. +2021-01-31 17:06:08,544 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:06:08,545 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:06:08,557 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 17:06:08,557 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 6ms. Found 0 repository interfaces. +2021-01-31 17:06:08,849 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 17:06:08,888 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 17:06:08,888 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:06:08,888 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:06:08,889 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:06:08,889 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 17:06:08,889 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:06:08,889 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:06:08,890 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:06:08,909 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-31 17:06:08,930 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$c8619389] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:06:08,967 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$f4af8206] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:06:09,101 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-31 17:06:09,103 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-31 17:06:09,539 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 17:06:09,551 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 17:06:09,560 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 17:06:09,560 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 17:06:09,676 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 17:06:09,676 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1790 ms +2021-01-31 17:06:10,743 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 17:06:10,744 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 17:06:10,744 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 17:06:10,744 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 17:06:10,745 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 17:06:10,745 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 17:06:11,732 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 17:06:14,663 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 17:06:14,871 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 17:06:14,981 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 17:06:15,558 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 17:06:15,681 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 17:06:15,732 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 17:06:15,740 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 17:06:15,740 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 17:06:15,743 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 17:06:15,744 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 17:06:15,745 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612083975733' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 17:06:15,745 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 17:06:15,745 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 17:06:15,745 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@db9a5a0 +2021-01-31 17:06:15,843 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: d89eea3b-e3da-492c-9085-4bf073cddc9e + +2021-01-31 17:06:15,888 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 17:06:15,920 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1e7f12b4, org.springframework.security.web.context.SecurityContextPersistenceFilter@35a15a6a, org.springframework.security.web.header.HeaderWriterFilter@c1131df, org.springframework.security.web.authentication.logout.LogoutFilter@4509adb7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@9d37f7e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3465c610, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6d19e5a3, org.springframework.security.web.session.SessionManagementFilter@6da4fa58, org.springframework.security.web.access.ExceptionTranslationFilter@2176fd76, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@66543659] +2021-01-31 17:06:16,007 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:06:16,038 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:06:16,038 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:06:16,119 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:06:16,126 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:06:16,130 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:06:16,130 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:06:16,132 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:06:16,136 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:06:16,142 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:06:16,143 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:06:16,143 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:06:16,144 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:06:16,146 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:06:16,146 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:06:16,146 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:06:16,146 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:06:16,152 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:06:16,157 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:06:16,157 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:06:16,157 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:06:16,158 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:06:16,162 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:06:16,162 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:06:16,165 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 95 +2021-01-31 17:06:16,168 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:06:16,169 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:06:16,170 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:06:16,171 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:06:16,172 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:06:16,173 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:06:16,174 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:06:16,174 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:06:16,176 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:06:16,178 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:06:16,179 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:06:16,179 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:06:16,180 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 17:06:16,190 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:06:16,190 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:06:16,191 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:06:16,192 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:06:16,192 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:06:16,196 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3644] ClusterManager: detected 1 failed or restarted instances. +2021-01-31 17:06:16,196 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3503] ClusterManager: Scanning for instance "LAPTOP-5SJBI05C1612083611554"'s failed in-progress jobs. +2021-01-31 17:06:16,201 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612083975733 started. +2021-01-31 17:06:16,212 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 17:06:16,229 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 17:06:16,233 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 8.722 seconds (JVM running for 9.577) +2021-01-31 17:06:19,170 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 17:06:19,172 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] +2021-01-31 17:06:19,172 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] +2021-01-31 17:06:19,172 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:06:19,211 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 96 +2021-01-31 17:06:19,211 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 96 +2021-01-31 17:06:19,211 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 96 +2021-01-31 17:06:19,212 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:06:19,212 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:06:19,212 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:06:19,214 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:06:19,214 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:06:19,214 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:07:02,387 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 17:07:02,388 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 17:07:02,394 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 6 ms +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:02,481 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 17:07:02,482 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,572 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:02,574 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:02,580 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:02,596 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,645 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,652 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,653 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,661 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:02,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-31 17:07:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:02,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:02,670 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:03,135 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,141 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:03,143 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:03,145 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:03,145 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:03,145 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:03,147 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,147 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,149 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:03,151 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:03,151 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:03,153 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:03,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:03,878 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:03,879 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,880 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:03,881 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:03,881 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:03,882 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:07:03,884 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:07:03,889 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,890 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,891 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,892 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,892 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,893 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,894 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,894 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,895 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,896 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,896 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,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-31 17:07:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:03,902 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:03,903 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:03,906 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:04,048 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:04,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-31 17:07:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:04,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:04,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-31 17:07:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:04,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-31 17:07:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:04,055 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:04,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:04,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:04,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:04,060 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:04,060 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:04,061 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:04,061 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:04,062 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:04], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:05,117 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:05,118 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:05,118 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:05,119 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:05,120 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:05,126 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:07:05,128 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:05,129 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:05,130 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:07:05,134 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:07:05,139 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:05,141 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:07,377 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:07,378 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:07,378 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:07,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-31 17:07:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:07,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-31 17:07:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:07,390 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:07:07,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-31 17:07:07], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:07:07,442 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:07,443 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:07,444 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:07,444 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:07,445 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:07,447 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:07,449 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:12,635 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:12,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-31 17:07:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:15,716 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:15,717 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:15,717 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:15,718 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:15,718 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:15,720 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:15,722 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:17,150 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:17,151 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:17,152 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:17,152 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:17,153 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:17,154 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-31 17:07:17,158 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-31 17:07:17,163 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:17,165 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:17,166 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:17,167 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:18,716 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:18,717 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:18,718 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:18,718 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:18,719 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:18,719 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:07:18,721 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:07:18,771 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:18,772 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:07:18,773 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:18,776 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:07:18,778 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:18,779 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:18,780 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:18,781 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:22,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-31 17:07:22], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 17:07:22,129 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:22,130 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:25,634 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:25,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:25,637 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:25,638 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:25,639 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:25,640 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:07:25,642 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:25,642 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:25,643 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:07:25,644 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:07:25,645 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:25,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:27,399 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:27,400 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,401 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:27,401 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:27,402 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:27,402 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:07:27,404 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:07:27,406 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,406 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,407 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,407 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,408 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,408 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,409 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,410 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,410 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,411 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,411 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,412 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,412 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,413 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,413 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,414 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,415 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,415 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:07:27,417 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:07:27,418 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:07:27,516 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:27,517 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,518 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:27,519 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:27,520 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:27,523 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:27,524 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:07:27,528 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:07:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:07:27,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-31 17:07:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:09:46,396 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:09:46,397 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:09:46,398 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:09:46,398 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:09:46,399 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:09:46,400 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:09:46,402 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:09:46,402 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:09:46,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-31 17:09:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:09:46,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-31 17:09:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:09:46,405 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:09:46,406 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:09:48,992 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:09:48,993 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:09:48,994 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:48], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:09:48,995 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:48], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:09:48,997 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:48], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:09:48,999 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:48], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:09:49,001 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:09:49,036 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:09:49,037 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:09:49,038 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:09:49,038 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:09:49,039 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:09:49,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:09:49,042 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:09:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:10:10,395 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:64] [任务开始] 正在刷新帖子分数: 2 +2021-01-31 17:12:26,335 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 6564 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 17:12:26,338 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 17:12:26,381 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 17:12:26,382 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 17:12:27,250 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:12:27,252 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:12:27,322 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 66ms. Found 1 repository interfaces. +2021-01-31 17:12:27,351 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:12:27,353 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:12:27,399 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 17:12:27,402 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 32ms. Found 0 repository interfaces. +2021-01-31 17:12:27,982 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 17:12:28,052 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 17:12:28,053 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:12:28,053 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:12:28,054 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:12:28,054 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 17:12:28,055 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:12:28,055 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:12:28,055 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:12:28,086 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-31 17:12:28,117 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$6d897a3b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:12:28,172 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$99d768b8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:12:28,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-31 17:12:28,335 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-31 17:12:28,764 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 17:12:28,776 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 17:12:28,785 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 17:12:28,785 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 17:12:28,898 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 17:12:28,898 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2516 ms +2021-01-31 17:12:29,931 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 17:12:29,932 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 17:12:29,933 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 17:12:29,933 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 17:12:29,933 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 17:12:29,933 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 17:12:31,148 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 17:12:33,984 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 17:12:34,177 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 17:12:34,273 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 17:12:34,801 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 17:12:34,952 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 17:12:35,003 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 17:12:35,010 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 17:12:35,011 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 17:12:35,014 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 17:12:35,015 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 17:12:35,016 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612084355004' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 17:12:35,016 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 17:12:35,016 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 17:12:35,016 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@777adb57 +2021-01-31 17:12:35,109 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 45628505-8075-41b6-99aa-7591dce7a903 + +2021-01-31 17:12:35,150 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 17:12:35,180 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@20c0907f, org.springframework.security.web.context.SecurityContextPersistenceFilter@75f62570, org.springframework.security.web.header.HeaderWriterFilter@24cde41d, org.springframework.security.web.authentication.logout.LogoutFilter@24474989, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3cec1d0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4b468746, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6dc59f64, org.springframework.security.web.session.SessionManagementFilter@72dfb95d, org.springframework.security.web.access.ExceptionTranslationFilter@59d32978, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@53ac8880] +2021-01-31 17:12:35,266 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:35,296 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:35,296 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:35,372 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:35,383 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:35,387 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:35,387 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:35,389 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:12:35,392 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:35,397 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:35,397 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:35,399 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:35,399 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:12:35,399 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:35,402 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:12:35,402 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:12:35,402 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:35,402 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:12:35,406 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:35,406 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:35,406 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:12:35,407 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:35,409 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:35,410 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:12:35,410 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:35,410 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:35,410 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:12:35,410 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:12:35,411 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:12:35,412 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 98 +2021-01-31 17:12:35,413 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:35,414 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:12:35,415 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:35,417 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:12:35,417 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:35,417 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:35,417 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:12:35,418 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 17:12:35,421 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:35,421 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:12:35,422 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:12:35,423 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:12:35,423 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:12:35,427 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3644] ClusterManager: detected 1 failed or restarted instances. +2021-01-31 17:12:35,427 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3503] ClusterManager: Scanning for instance "LAPTOP-5SJBI05C1612083975733"'s failed in-progress jobs. +2021-01-31 17:12:35,430 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612084355004 started. +2021-01-31 17:12:35,438 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 17:12:35,448 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 17:12:35,450 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 9.431 seconds (JVM running for 10.235) +2021-01-31 17:12:38,417 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 17:12:38,419 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:12:38,419 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-31 17:12:38,419 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:12:38,449 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 99 +2021-01-31 17:12:38,449 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 99 +2021-01-31 17:12:38,449 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 99 +2021-01-31 17:12:38,450 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:12:38,450 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:12:38,451 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:12:38,452 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:12:38,452 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:12:38,452 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:12:42,475 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 17:12:42,475 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 17:12:42,482 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-31 17:12:42,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:42,570 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 17:12:42,571 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 17:12:42,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-31 17:12:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:42,670 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:42,672 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:42,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-31 17:12:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:42,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:12:42,725 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:42,727 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:42,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-31 17:12:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:12:42,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-31 17:12:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:12:42,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-31 17:12:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:12:42,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-31 17:12:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:12:44,055 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:44,057 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:44,058 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:44,059 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:44,060 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:44,061 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:12:44,063 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:44,065 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:44,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-31 17:12:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:12:44,068 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:12:44,070 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:12:44,071 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:12:45,736 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:45,737 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,738 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:45,739 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:45,740 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:45,741 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:12:45,743 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:12:45,747 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,749 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,750 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,751 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,752 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,753 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,754 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,755 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,755 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,756 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,757 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,758 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,759 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,759 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,760 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,762 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,763 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,764 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,767 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,768 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:45,768 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:12:45,770 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:12:45,878 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:45,880 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,881 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:45,882 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:45,883 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:45,891 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:45,892 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,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-31 17:12:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:45,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-31 17:12:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:45,894 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:45,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-31 17:12:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:45,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-31 17:12:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:45,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-31 17:12:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:45,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-31 17:12:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:45,897 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:47,910 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:47,911 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:47,912 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:47,912 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:47,913 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:47,914 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:12:47,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-31 17:12:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:47,918 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:47,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-31 17:12:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:12:47,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-31 17:12:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:12:47,921 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:12:47,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-31 17:12:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:12:50,263 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:50,264 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:50,266 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:50,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:50,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:50,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:12:50,288 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:12:50,295 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:12:50,357 INFO [http-nio-8080-exec-6] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:12:50,366 INFO [http-nio-8080-exec-6] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:12:50,366 INFO [http-nio-8080-exec-6] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:12:50,370 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:12:50,412 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:12:50,413 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:50,414 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:12:50,416 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:12:50,420 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:12:50,426 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:12:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:12:50,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-31 17:12:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:15:10,389 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:64] [任务开始] 正在刷新帖子分数: 2 +2021-01-31 17:18:53,745 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 4864 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 17:18:53,747 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 17:18:53,785 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 17:18:53,786 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 17:18:54,317 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:18:54,318 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:18:54,364 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 43ms. Found 1 repository interfaces. +2021-01-31 17:18:54,371 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:18:54,372 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:18:54,383 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 17:18:54,383 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 6ms. Found 0 repository interfaces. +2021-01-31 17:18:54,620 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 17:18:54,659 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 17:18:54,660 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:18:54,660 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:18:54,660 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:18:54,661 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 17:18:54,661 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:18:54,661 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:18:54,661 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:18:54,680 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-31 17:18:54,700 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$8feba01f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:18:54,734 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bc398e9c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:18:54,838 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-31 17:18:54,840 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-31 17:18:55,150 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 17:18:55,160 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 17:18:55,167 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 17:18:55,168 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 17:18:55,258 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 17:18:55,258 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1472 ms +2021-01-31 17:18:56,172 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 17:18:56,173 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 17:18:56,173 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 17:18:56,173 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 17:18:56,173 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 17:18:56,174 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 17:18:57,059 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 17:18:59,810 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 17:19:00,059 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 17:19:00,159 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 17:19:00,787 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 17:19:00,920 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 17:19:00,974 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 17:19:00,984 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 17:19:00,985 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 17:19:00,988 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 17:19:00,990 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 17:19:00,992 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612084740975' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 17:19:00,992 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 17:19:00,992 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 17:19:00,992 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7d6e5e03 +2021-01-31 17:19:01,126 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 61d5c2e4-f1b8-4add-bb38-5ca7d8713984 + +2021-01-31 17:19:01,169 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 17:19:01,204 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@491a30db, org.springframework.security.web.context.SecurityContextPersistenceFilter@5360bf2, org.springframework.security.web.header.HeaderWriterFilter@2e0434cc, org.springframework.security.web.authentication.logout.LogoutFilter@4cfb64d8, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6c834b87, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1d91ae22, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@529d31ca, org.springframework.security.web.session.SessionManagementFilter@3cccb268, org.springframework.security.web.access.ExceptionTranslationFilter@4681ade, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1ba45267] +2021-01-31 17:19:01,307 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:01,345 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:01,345 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:01,431 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:01,442 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:01,445 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:01,446 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:01,448 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:19:01,453 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:01,460 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:01,460 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:01,462 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:01,463 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:19:01,463 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:01,468 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:19:01,469 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:19:01,470 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:19:01,474 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:01,477 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:01,478 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:01,478 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:19:01,478 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:01,483 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 101 +2021-01-31 17:19:01,485 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:01,485 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:01,485 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:01,486 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:19:01,486 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:19:01,487 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:19:01,487 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:19:01,488 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:19:01,489 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:01,490 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:19:01,492 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:01,496 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:01,496 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:01,497 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:19:01,497 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 17:19:01,507 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:01,508 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:19:01,509 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:19:01,510 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:19:01,510 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3644] ClusterManager: detected 1 failed or restarted instances. +2021-01-31 17:19:01,510 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:19:01,510 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3503] ClusterManager: Scanning for instance "LAPTOP-5SJBI05C1612084355004"'s failed in-progress jobs. +2021-01-31 17:19:01,521 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612084740975 started. +2021-01-31 17:19:01,534 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 17:19:01,545 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 17:19:01,547 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 8.113 seconds (JVM running for 8.939) +2021-01-31 17:19:02,201 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 17:19:02,201 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 17:19:02,209 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 8 ms +2021-01-31 17:19:02,236 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:02,305 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 17:19:02,307 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 17:19:02,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:02,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:02,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:02,510 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:02,520 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:02,521 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:02,522 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:02,523 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:19:02,531 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:19:02,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-31 17:19:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:19:04,485 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 17:19:04,488 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [delete-0] +2021-01-31 17:19:04,488 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [delete-0] +2021-01-31 17:19:04,488 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:19:04,521 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 102 +2021-01-31 17:19:04,521 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 102 +2021-01-31 17:19:04,521 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 102 +2021-01-31 17:19:04,521 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:19:04,522 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:19:04,522 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:19:04,524 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:19:04,524 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:19:04,524 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:16,284 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:16,285 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:16,291 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:16,296 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:19:16,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-31 17:19:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:19:17,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-31 17:19:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:17,999 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,000 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:19: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-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19: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-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,013 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,014 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,015 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,016 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,017 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,018 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,018 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,019 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,021 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,021 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,022 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,023 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,024 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,024 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,026 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:18,026 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:19:18,029 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:19:18,143 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:18,146 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:18,149 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:18,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-31 17:19:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:18,173 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:18,173 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:18,174 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:18,175 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:18,175 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:18,176 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:18,176 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:18,176 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:18,176 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:21,119 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:21,120 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,121 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:21,122 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:21,122 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:21,123 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:19:21,126 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,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-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:21,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-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:21,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-31 17:19:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19: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-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,132 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:21,132 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19: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-31 17:19:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:21,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,136 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,136 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:21,137 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:21,137 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,138 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,139 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:21,139 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:21,140 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,141 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,141 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:21,142 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:21,143 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,144 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,144 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:21,145 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:21,145 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:19:21,147 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:19:21,148 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:19:21,252 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:21,253 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:21,254 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:21,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-31 17:19:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:21,256 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:22,208 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:22,209 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:22,210 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:22,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-31 17:19:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:22,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-31 17:19:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:22,216 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:22], 访问了[com.greate.community.service.LikeService.like]. +2021-01-31 17:19:22,254 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:22,255 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:22], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:22,310 INFO [http-nio-8080-exec-6] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:19:22,320 INFO [http-nio-8080-exec-6] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:19:22,320 INFO [http-nio-8080-exec-6] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:19:22,324 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:59,277 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:59,277 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:59,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:59,295 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,296 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:19:59,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:19:59,297 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:19:59,299 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:19:59,300 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:19:59,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-31 17:19:59], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:19:59,536 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:19:59], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:20:10,414 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:64] [任务开始] 正在刷新帖子分数: 2 +2021-01-31 17:25:10,380 INFO [communityScheduler_Worker-2] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:64] [任务开始] 正在刷新帖子分数: 1 +2021-01-31 17:26:47,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-31 17:26:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:26:47,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:47,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:26:47,273 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:26:47,273 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:26:47,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-31 17:26:47,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:26:47,331 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:47,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:26:47,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:26:47,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:26:47,335 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:26:47,337 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:26:50,538 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:26:50,539 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,540 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:26:50,540 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:26:50,541 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:26:50,541 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:26:50,543 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,544 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:26:50,544 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:26:50,545 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:26:50,547 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,548 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:26:50,549 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:26:50,549 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:26:50,552 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,553 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,553 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:26:50,554 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:26:50,554 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,555 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,555 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:26:50,556 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:26:50,556 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,557 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,557 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:26:50,557 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:26:50,558 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,558 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:50,559 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:26:50,559 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:26:50,560 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:26:50,561 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:26:50,563 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:26:52,611 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:26:52,613 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:52,614 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:26:52,615 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:26:52,615 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:26:52,616 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-31 17:26:52,647 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:26:52,649 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:26:52,650 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:26:52,650 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:26:52,651 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:26:52,653 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:26:52,654 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:26:52], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:28:19,007 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 20024 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 17:28:19,011 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 17:28:19,057 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 17:28:19,057 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 17:28:19,837 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:28:19,839 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:28:19,893 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 50ms. Found 1 repository interfaces. +2021-01-31 17:28:19,901 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:28:19,902 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:28:19,915 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 17:28:19,916 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 7ms. Found 0 repository interfaces. +2021-01-31 17:28:20,189 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 17:28:20,233 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 17:28:20,234 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:28:20,234 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:28:20,234 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:28:20,235 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 17:28:20,235 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:28:20,235 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:28:20,235 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:28:20,256 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-31 17:28:20,279 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$d8e8cee6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:28:20,319 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$536bd63] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:28:20,440 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-31 17:28:20,442 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-31 17:28:20,843 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 17:28:20,855 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 17:28:20,863 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 17:28:20,864 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 17:28:20,978 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 17:28:20,978 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1921 ms +2021-01-31 17:28:22,005 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 17:28:22,006 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 17:28:22,006 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 17:28:22,006 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 17:28:22,006 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 17:28:22,006 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 17:28:22,943 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 17:28:23,954 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 17:28:24,282 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 17:28:24,403 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 17:28:25,000 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 17:28:25,138 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 17:28:25,189 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 17:28:25,197 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 17:28:25,197 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 17:28:25,200 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 17:28:25,202 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 17:28:25,203 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612085305191' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 17:28:25,203 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 17:28:25,203 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 17:28:25,203 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@371950ec +2021-01-31 17:28:25,296 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 347e03b1-7ac8-48a3-87c3-a71a04525056 + +2021-01-31 17:28:25,346 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 17:28:25,380 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@49ec8549, org.springframework.security.web.context.SecurityContextPersistenceFilter@570f4f84, org.springframework.security.web.header.HeaderWriterFilter@7f9548d0, org.springframework.security.web.authentication.logout.LogoutFilter@5e701216, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@348b736c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@45f5dc9d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4f8edb91, org.springframework.security.web.session.SessionManagementFilter@45c66fbc, org.springframework.security.web.access.ExceptionTranslationFilter@2b9dffb5, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5ca06f22] +2021-01-31 17:28:25,474 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:28:25,511 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:28:25,511 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:28:25,595 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:28:25,603 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:28:25,607 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:28:25,607 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:28:25,609 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:28:25,613 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:28:25,618 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:28:25,618 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:28:25,619 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:28:25,620 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:28:25,621 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:28:25,623 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:28:25,623 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:28:25,623 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:28:25,628 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:28:25,631 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:28:25,631 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:28:25,632 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:28:25,632 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:28:25,633 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 104 +2021-01-31 17:28:25,635 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:28:25,636 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:28:25,636 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:28:25,636 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:28:25,636 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:28:25,637 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:28:25,637 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:28:25,637 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:28:25,638 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:28:25,639 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:28:25,640 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:28:25,643 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:28:25,644 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:28:25,644 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:28:25,644 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 17:28:25,647 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:28:25,647 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:28:25,648 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:28:25,648 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:28:25,649 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:28:25,652 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3644] ClusterManager: detected 1 failed or restarted instances. +2021-01-31 17:28:25,653 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3503] ClusterManager: Scanning for instance "LAPTOP-5SJBI05C1612084740975"'s failed in-progress jobs. +2021-01-31 17:28:25,663 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612085305191 started. +2021-01-31 17:28:25,672 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 17:28:25,684 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 17:28:25,686 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 7.084 seconds (JVM running for 7.88) +2021-01-31 17:28:28,638 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 17:28:28,639 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] +2021-01-31 17:28:28,640 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] +2021-01-31 17:28:28,640 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:28:28,678 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 105 +2021-01-31 17:28:28,679 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 105 +2021-01-31 17:28:28,679 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 105 +2021-01-31 17:28:28,680 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:28:28,682 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:28:28,684 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:28:28,688 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:28:28,688 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:28:28,688 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:29:32,933 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 18968 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 17:29:32,941 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 17:29:32,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 17:29:32,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 17:29:33,491 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:29:33,492 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:29:33,537 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 41ms. Found 1 repository interfaces. +2021-01-31 17:29:33,544 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 17:29:33,545 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 17:29:33,556 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 17:29:33,556 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 6ms. Found 0 repository interfaces. +2021-01-31 17:29:33,799 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 17:29:33,838 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 17:29:33,839 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:29:33,839 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:29:33,840 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:29:33,840 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 17:29:33,840 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 17:29:33,840 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:29:33,840 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 17:29:33,859 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-31 17:29:33,879 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$722346e8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:29:33,913 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$9e713565] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 17:29:34,021 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-31 17:29:34,023 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-31 17:29:34,333 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 17:29:34,343 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 17:29:34,349 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 17:29:34,349 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 17:29:34,440 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 17:29:34,440 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 1472 ms +2021-01-31 17:29:35,376 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 17:29:35,376 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 17:29:35,377 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 17:29:35,377 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 17:29:35,377 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 17:29:35,377 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 17:29:36,299 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 17:29:37,209 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 17:29:37,458 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 17:29:37,555 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 17:29:38,111 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 17:29:38,232 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 17:29:38,285 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 17:29:38,293 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 17:29:38,293 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 17:29:38,296 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 17:29:38,298 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 17:29:38,298 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612085378287' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 17:29:38,299 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 17:29:38,299 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 17:29:38,299 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7d7f873a +2021-01-31 17:29:38,412 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 999976a8-4037-4250-87ed-403bbc55d2b3 + +2021-01-31 17:29:38,457 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 17:29:38,489 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@42ce6344, org.springframework.security.web.context.SecurityContextPersistenceFilter@aa1132, org.springframework.security.web.header.HeaderWriterFilter@29c2e477, org.springframework.security.web.authentication.logout.LogoutFilter@39504dcf, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@9804de3, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7401287e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3983490f, org.springframework.security.web.session.SessionManagementFilter@15e693ad, org.springframework.security.web.access.ExceptionTranslationFilter@6f25a62c, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@23db2a22] +2021-01-31 17:29:38,575 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:29:38,606 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:29:38,607 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:29:38,688 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:29:38,696 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:29:38,699 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:29:38,700 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:29:38,702 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:29:38,706 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:29:38,711 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:29:38,712 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:29:38,713 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:29:38,713 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:29:38,715 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:29:38,717 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:29:38,718 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:29:38,718 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:29:38,722 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:29:38,725 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:29:38,726 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:29:38,726 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:29:38,726 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:29:38,727 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 107 +2021-01-31 17:29:38,730 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:29:38,732 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:29:38,732 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:29:38,732 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:29:38,732 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:29:38,733 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:29:38,734 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:29:38,734 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:29:38,735 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:29:38,737 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:29:38,739 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:29:38,742 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:29:38,742 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:29:38,742 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 17:29:38,743 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 17:29:38,746 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:29:38,746 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 17:29:38,747 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 17:29:38,747 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 17:29:38,747 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:29:38,751 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3644] ClusterManager: detected 1 failed or restarted instances. +2021-01-31 17:29:38,752 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3503] ClusterManager: Scanning for instance "LAPTOP-5SJBI05C1612085305191"'s failed in-progress jobs. +2021-01-31 17:29:38,755 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612085378287 started. +2021-01-31 17:29:38,762 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 17:29:38,773 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 17:29:38,775 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 6.148 seconds (JVM running for 7.023) +2021-01-31 17:29:41,732 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 17:29:41,734 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [delete-0] +2021-01-31 17:29:41,734 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [delete-0] +2021-01-31 17:29:41,734 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 17:29:41,762 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 108 +2021-01-31 17:29:41,762 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 108 +2021-01-31 17:29:41,762 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 108 +2021-01-31 17:29:41,764 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 17:29:41,764 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 17:29:41,763 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 17:29:41,765 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 17:29:41,765 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 17:29:41,765 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 17:29:45,787 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 17:29:45,787 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 17:29:45,794 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 7 ms +2021-01-31 17:29:45,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-31 17:29:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:45,883 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 17:29:45,884 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 17:29:45,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-31 17:29:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:45,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-31 17:29:45], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:45,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-31 17:29:45], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:45,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-31 17:29:45], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:45,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-31 17:29:45], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,046 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,046 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:46,047 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:46,048 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,048 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:46,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-31 17:29:46], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:46,597 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:46,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:46,599 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:46,601 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:46,601 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:46], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:49,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:49,915 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:49,919 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:49,920 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:49,921 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:29:49,924 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:49,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:49,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:29:49,928 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:49,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:49,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,936 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:49,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:49,938 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,938 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:49,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-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:49,940 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:49,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:49,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:29:49,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:29:49,944 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:49,945 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:50,052 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:50,054 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:50,055 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:50,057 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:50,058 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:50,881 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:50,882 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:50,882 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:50,883 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:50,884 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:50,885 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-31 17:29:50,890 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-31 17:29:50,894 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:50,896 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:50,899 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:50,901 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:51,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:51,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-31 17:29:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:51,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-31 17:29:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:51,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-31 17:29:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:51,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-31 17:29:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:51,854 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:29:51,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:51,903 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:29:51,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:51,906 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:29:51,908 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:51,909 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:29:51,911 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:51,912 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:29:51,915 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:51,917 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:51,919 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:51,920 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:53,290 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:53,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-31 17:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:53,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-31 17:29:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:53,292 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:53,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-31 17:29:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:53,294 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:29:53,296 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 17:29:53,297 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:53,298 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:53,299 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 17:29:53,312 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:53,314 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:54,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:54,358 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:54,359 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:54,359 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:54,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:54,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:29:54,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:54,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:29:54,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:54,366 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:29:54,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:54,370 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 17:29:54,372 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:54,373 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 17:29:54,377 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:54,378 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:54,380 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:54,381 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:57,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-31 17:29:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:57,418 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,419 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:57,421 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:57,421 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:29:57,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-31 17:29:57], 访问了[com.greate.community.service.ElasticsearchService.searchDiscussPost]. +2021-01-31 17:29:57,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-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,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-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,621 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,635 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,636 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,637 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,638 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,639 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,639 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,640 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,641 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,641 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,642 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,642 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,643 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,644 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,644 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,646 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:29:57,646 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:29:57,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:29:57,746 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:29:57,747 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:29:57,749 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:29:57,749 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:29:57,750 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:29:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:05,975 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,975 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:05,976 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:05,977 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:30:05,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:30:05,984 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,988 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,988 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,989 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,989 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,991 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,991 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,992 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,992 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:05,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-31 17:30:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:05,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:05,998 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:06,104 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:06,105 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:06,106 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:06,107 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:06,108 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:06,114 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:06,115 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:06,116 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:06,117 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:06,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-31 17:30:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:06,118 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:06,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-31 17:30:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:06,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-31 17:30:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:06,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-31 17:30:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:06,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-31 17:30:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:10,418 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:60] [任务取消] 没有需要刷新的帖子 +2021-01-31 17:30:11,242 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:30:11,252 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,254 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,254 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,255 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,255 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,256 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,256 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:11,385 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:11,391 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:11,392 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,393 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:11,395 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:11,396 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:11,396 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:11,397 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:11,398 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:11,400 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:11], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:11,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-31 17:30:11], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:16,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:16,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:16,928 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:16,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-31 17:30:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:16,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-31 17:30:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:30:16,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-31 17:30:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:30:16,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-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,936 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,936 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,938 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,938 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,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-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,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-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,940 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,940 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,943 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:16,943 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:16,944 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:16,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:17,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-31 17:30:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:17,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-31 17:30:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:17,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-31 17:30:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:17,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-31 17:30:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:17,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-31 17:30:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:17,046 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:17,046 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:17,047 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:17,047 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:17,048 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:17,048 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:17,049 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:17,049 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:17,050 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:17,050 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:25,225 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:25,225 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:25,226 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:25,226 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:25,227 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:25,228 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:25,230 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:25,230 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:25,231 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:25,231 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:25,233 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:25,234 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:27,340 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:27,341 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,341 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:27,342 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:27,342 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:27,343 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:30:27,344 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:30:27,346 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,347 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,347 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,348 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,348 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,349 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,350 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,350 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,351 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,351 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,352 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,352 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,352 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,353 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,353 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,354 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,354 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,354 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,355 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,355 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:27,356 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:27,357 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:27,580 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:27,581 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:27,581 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:27,581 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,581 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,582 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:27,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-31 17:30:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:27,582 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:27,582 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:27,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-31 17:30:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:27,583 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:27,583 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:27,583 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:27,584 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:27,584 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:27], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:28,979 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:28,980 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:28,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:28,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:28,982 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:28,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-31 17:30:28], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:28,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:28,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-31 17:30:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:28,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-31 17:30:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:28,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-31 17:30:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:28,988 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:28,989 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:33,779 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:33,780 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:33,780 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:33,781 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:33,781 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:33,793 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:30:33,802 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:30:33,814 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:33,832 INFO [http-nio-8080-exec-6] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 17:30:33,844 INFO [http-nio-8080-exec-6] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 17:30:33,845 INFO [http-nio-8080-exec-6] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 17:30:33,849 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:33,868 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:33,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-31 17:30:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:33,913 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:33], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:40,120 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:40,121 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:40,121 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:40,122 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:40,122 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:40,123 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:40,126 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:40,127 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:40,130 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:40,132 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:40,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-31 17:30:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:42,254 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:42,255 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,256 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:42,256 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,265 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,265 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,265 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,266 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,266 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,269 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,269 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,269 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:42,270 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:42,271 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:42,434 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:42,435 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,436 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:42,437 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:42,438 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:42,450 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:42,451 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:42,452 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:42,453 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:42,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-31 17:30:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:42,453 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:42], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:44,815 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:44,816 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:44,817 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:44,817 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:44,818 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:44,819 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:44,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:44,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:44,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:44,822 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:44,823 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:44,824 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:47,368 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:47,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:47,370 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:47,371 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:47,371 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:47,373 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:30:47,375 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:30:47,387 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:47,389 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:47,391 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:47,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:47,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:47,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:47,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:47,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:47,415 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:47,418 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:47,420 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:47,421 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:47,421 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:47,423 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:47,423 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:47,424 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:47,424 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:47,426 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:47,427 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:47,429 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:51,416 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:51,417 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:51,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-31 17:30:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:51,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-31 17:30:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:51,419 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:51,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-31 17:30:51], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:30:51,424 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:30:51,435 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:51,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:51,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:51,460 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:51,461 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:51,462 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:51,462 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:51,462 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:51,463 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:51,465 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:51,465 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:51,465 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:51,466 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:51,468 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:51,469 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:51,470 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:51,471 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:51,472 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:51,474 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:51,474 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:51,475 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:51,475 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:51,476 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:51,478 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:51,479 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:54,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:54,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-31 17:30:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:54,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:54,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:54,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-31 17:30:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:54,496 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 17:30:54,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-31 17:30:54], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 17:30:54,509 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:54,512 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:54,513 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:54,533 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:54,534 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:54,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:54,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:54,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:54,536 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:30:54,538 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:54,538 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:54,539 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:54,540 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:54,544 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:54,545 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:54,545 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:54,546 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:54,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-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:54,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-31 17:30:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:54,549 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:54,549 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:54,550 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:54,551 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:54,552 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:54,552 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:54,553 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:30:54,553 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:30:54,554 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:30:54,555 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:54,557 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:56,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:56,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-31 17:30:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:56,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-31 17:30:56], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:56,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-31 17:30:56], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:56,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-31 17:30:56], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:56,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-31 17:30:56], 访问了[com.greate.community.service.DiscussPostSerivce.updateStatus]. +2021-01-31 17:30:57,601 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:57,602 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,602 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:57,603 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:57,603 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:57,604 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:30:57,605 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:30:57,607 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,607 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,608 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,608 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,609 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,609 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,610 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,611 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,611 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,612 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,612 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,613 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,613 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,614 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,614 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,614 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,615 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,615 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,616 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,616 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:30:57,617 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:30:57,618 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:30:57,709 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:57,710 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,711 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:57,712 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:57,714 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:57,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-31 17:30:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:57,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,717 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:57,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-31 17:30:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:57,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-31 17:30:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:30:57,720 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:30:57,722 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:30:57,722 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:30:57,723 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:30:57,724 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:30:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:32:18,516 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:32:18,516 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:18,517 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:32:18,518 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:32:18,518 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:32:18,519 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 17:32:18,520 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:18,521 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:18,521 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:32:18,522 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:32:18,523 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:18,524 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:18,524 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:32:18,524 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:32:18,526 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:32:18,527 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:18,527 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:18,528 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:32:18,528 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:32:18,530 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:32:18,531 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:18,532 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:18,532 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 17:32:18,533 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 17:32:18,534 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 17:32:18,535 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:32:18,536 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:32:21,711 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:32:21,712 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,713 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:32:21,713 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:32:21,713 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:32:21,714 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 17:32:21,715 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 17:32:21,716 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,717 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,717 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,719 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,719 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,720 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,721 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,724 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,724 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,725 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,725 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,726 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,726 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 17:32:21,727 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 17:32:21,728 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 17:32:21,819 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:32:21,819 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:32:21,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-31 17:32:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 17:32:21,820 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,820 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,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-31 17:32:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 17:32:21,821 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:32:21,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:32:21,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-31 17:32:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 17:32:21,821 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:32:21,821 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:32:21,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-31 17:32:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 17:32:21,822 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:32:21,822 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 17:32:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 17:32:21,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-31 17:32:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:01:47,686 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:50] Starting CommunityApplication on LAPTOP-5SJBI05C with PID 5504 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-31 18:01:47,690 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:675] No active profile set, falling back to default profiles: default +2021-01-31 18:01:47,739 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-31 18:01:47,739 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:227] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-31 18:01:48,787 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 18:01:48,789 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 18:01:48,871 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 75ms. Found 1 repository interfaces. +2021-01-31 18:01:48,884 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:244] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-31 18:01:48,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:126] Bootstrapping Spring Data repositories in DEFAULT mode. +2021-01-31 18:01:48,908 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationExtensionSupport [RepositoryConfigurationExtensionSupport.java:363] Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.greate.community.dao.elasticsearch.DiscussPostRepository. +2021-01-31 18:01:48,908 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:182] Finished Spring Data repository scanning in 13ms. Found 0 repository interfaces. +2021-01-31 18:01:49,303 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-31 18:01:49,361 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-31 18:01:49,362 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 18:01:49,363 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-31 18:01:49,363 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 18:01:49,364 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-31 18:01:49,364 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-31 18:01:49,364 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 18:01:49,364 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-31 18:01:49,391 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-31 18:01:49,421 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$24745bf7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 18:01:49,473 INFO [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:330] Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$50c24a74] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2021-01-31 18:01:49,633 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-31 18:01:49,635 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-31 18:01:50,041 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:90] Tomcat initialized with port(s): 8080 (http) +2021-01-31 18:01:50,053 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-31 18:01:50,062 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-31 18:01:50,063 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.19] +2021-01-31 18:01:50,174 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-31 18:01:50,174 INFO [restartedMain] o.s.w.c.ContextLoader [ServletWebServerApplicationContext.java:296] Root WebApplicationContext: initialization completed in 2434 ms +2021-01-31 18:01:51,287 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:190] no modules loaded +2021-01-31 18:01:51,288 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin] +2021-01-31 18:01:51,288 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.join.ParentJoinPlugin] +2021-01-31 18:01:51,289 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin] +2021-01-31 18:01:51,289 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.script.mustache.MustachePlugin] +2021-01-31 18:01:51,289 INFO [restartedMain] o.e.p.PluginsService [PluginsService.java:193] loaded plugin [org.elasticsearch.transport.Netty4Plugin] +2021-01-31 18:01:52,297 INFO [restartedMain] o.s.d.e.c.TransportClientFactoryBean [TransportClientFactoryBean.java:88] Adding transport node : 127.0.0.1:9300 +2021-01-31 18:01:53,136 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:57] LiveReload server is running on port 35729 +2021-01-31 18:01:53,403 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:171] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-31 18:01:53,515 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:61] Adding welcome page template: index +2021-01-31 18:01:54,179 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-31 18:01:54,338 INFO [restartedMain] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-31 18:01:54,410 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1208] Using default implementation for ThreadExecutor +2021-01-31 18:01:54,421 INFO [restartedMain] o.q.c.SchedulerSignalerImpl [SchedulerSignalerImpl.java:61] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2021-01-31 18:01:54,421 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:229] Quartz Scheduler v.2.3.1 created. +2021-01-31 18:01:54,425 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:672] Using db table-based data access locking (synchronization). +2021-01-31 18:01:54,427 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreCMT.java:145] JobStoreCMT initialized. +2021-01-31 18:01:54,428 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:294] Scheduler meta-data: Quartz Scheduler (v2.3.1) 'communityScheduler' with instanceId 'LAPTOP-5SJBI05C1612087314412' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 5 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. + +2021-01-31 18:01:54,429 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1362] Quartz scheduler 'communityScheduler' initialized from an externally provided properties instance. +2021-01-31 18:01:54,429 INFO [restartedMain] o.q.i.StdSchedulerFactory [StdSchedulerFactory.java:1366] Quartz scheduler version: 2.3.1 +2021-01-31 18:01:54,429 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:2293] JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@352e9ac0 +2021-01-31 18:01:54,560 INFO [restartedMain] o.s.b.a.s.s.UserDetailsServiceAutoConfiguration [UserDetailsServiceAutoConfiguration.java:87] + +Using generated security password: 927fc301-5128-4f43-8ebd-7d2eaf5af350 + +2021-01-31 18:01:54,625 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: Ant [pattern='/resources/**'], [] +2021-01-31 18:01:54,679 INFO [restartedMain] o.s.s.w.DefaultSecurityFilterChain [DefaultSecurityFilterChain.java:43] Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@29ebc589, org.springframework.security.web.context.SecurityContextPersistenceFilter@574751ec, org.springframework.security.web.header.HeaderWriterFilter@29e8f8ec, org.springframework.security.web.authentication.logout.LogoutFilter@374c3314, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3da38037, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@64fa90c5, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@669a25cf, org.springframework.security.web.session.SessionManagementFilter@2f702c4e, org.springframework.security.web.access.ExceptionTranslationFilter@3edd3322, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@343c253e] +2021-01-31 18:01:54,820 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:01:54,874 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:01:54,875 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:01:55,010 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:01:55,030 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:01:55,035 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:01:55,035 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:01:55,038 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 18:01:55,044 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:01:55,051 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:01:55,052 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:01:55,054 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:01:55,054 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-2, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 18:01:55,055 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:01:55,058 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 18:01:55,058 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 18:01:55,059 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 18:01:55,059 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:01:55,065 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:01:55,065 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:01:55,065 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 18:01:55,066 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:01:55,070 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:01:55,071 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-4, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 18:01:55,071 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:01:55,071 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:01:55,072 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 18:01:55,072 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 18:01:55,072 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 18:01:55,075 INFO [restartedMain] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:01:55,078 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:279] ConsumerConfig values: + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.id = + 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 + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + 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 + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:01:55,079 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 18:01:55,084 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:01:55,085 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:01:55,086 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:171] Initializing ExecutorService +2021-01-31 18:01:55,087 INFO [restartedMain] o.s.s.q.SchedulerFactoryBean [SchedulerFactoryBean.java:726] Starting Quartz Scheduler now +2021-01-31 18:01:55,089 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 111 +2021-01-31 18:01:55,089 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 111 +2021-01-31 18:01:55,092 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 18:01:55,092 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 18:01:55,093 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:01:55,094 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:677] [Consumer clientId=consumer-6, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-31 18:01:55,095 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-6, groupId=test-consumer-group] Revoking previously assigned partitions [] +2021-01-31 18:01:55,096 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [] +2021-01-31 18:01:55,097 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-6, groupId=test-consumer-group] (Re-)joining group +2021-01-31 18:01:55,101 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 18:01:55,101 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 18:01:55,104 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3644] ClusterManager: detected 1 failed or restarted instances. +2021-01-31 18:01:55,104 INFO [restartedMain] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:3503] ClusterManager: Scanning for instance "LAPTOP-5SJBI05C1612085378287"'s failed in-progress jobs. +2021-01-31 18:01:55,114 INFO [restartedMain] o.q.c.QuartzScheduler [QuartzScheduler.java:547] Scheduler communityScheduler_$_LAPTOP-5SJBI05C1612087314412 started. +2021-01-31 18:01:55,122 INFO [QuartzScheduler_communityScheduler-LAPTOP-5SJBI05C1612087314412_MisfireHandler] o.s.s.q.LocalDataSourceJobStore [JobStoreSupport.java:973] Handling 1 trigger(s) that missed their scheduled fire-time. +2021-01-31 18:01:55,137 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-31 18:01:55,162 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:204] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-31 18:01:55,166 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:59] Started CommunityApplication in 7.81 seconds (JVM running for 8.626) +2021-01-31 18:01:58,098 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-4, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 18:01:58,098 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:855] [Consumer clientId=consumer-2, groupId=test-consumer-group] Attempt to heartbeat failed since group is rebalancing +2021-01-31 18:01:58,114 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-4, groupId=test-consumer-group] Revoking previously assigned partitions [publish-0] +2021-01-31 18:01:58,114 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:472] [Consumer clientId=consumer-2, groupId=test-consumer-group] Revoking previously assigned partitions [comment-0, like-0, follow-0] +2021-01-31 18:01:58,114 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [publish-0] +2021-01-31 18:01:58,114 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:375] partitions revoked: [comment-0, like-0, follow-0] +2021-01-31 18:01:58,115 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-4, groupId=test-consumer-group] (Re-)joining group +2021-01-31 18:01:58,115 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:509] [Consumer clientId=consumer-2, groupId=test-consumer-group] (Re-)joining group +2021-01-31 18:01:58,151 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-2, groupId=test-consumer-group] Successfully joined group with generation 112 +2021-01-31 18:01:58,151 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-4, groupId=test-consumer-group] Successfully joined group with generation 112 +2021-01-31 18:01:58,151 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:473] [Consumer clientId=consumer-6, groupId=test-consumer-group] Successfully joined group with generation 112 +2021-01-31 18:01:58,152 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-4, groupId=test-consumer-group] Setting newly assigned partitions [publish-0] +2021-01-31 18:01:58,152 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-6, groupId=test-consumer-group] Setting newly assigned partitions [delete-0] +2021-01-31 18:01:58,152 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:280] [Consumer clientId=consumer-2, groupId=test-consumer-group] Setting newly assigned partitions [comment-0, like-0, follow-0] +2021-01-31 18:01:58,154 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [publish-0] +2021-01-31 18:01:58,154 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#2-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [comment-0, like-0, follow-0] +2021-01-31 18:01:58,154 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#1-0-C-1] o.s.k.l.KafkaMessageListenerContainer [AbstractMessageListenerContainer.java:380] partitions assigned: [delete-0] +2021-01-31 18:02:05,904 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-31 18:02:05,904 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:524] Initializing Servlet 'dispatcherServlet' +2021-01-31 18:02:05,914 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:546] Completed initialization in 9 ms +2021-01-31 18:02:05,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-31 18:02:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:06,003 INFO [http-nio-8080-exec-1] i.l.c.EpollProvider [Netty4InternalESLogger.java:104] Starting without optional epoll library +2021-01-31 18:02:06,004 INFO [http-nio-8080-exec-1] i.l.c.KqueueProvider [Netty4InternalESLogger.java:104] Starting without optional kqueue library +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:06,155 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:06,171 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:06,177 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,179 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,185 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,189 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,190 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,195 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,198 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,199 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,204 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,207 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,208 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,209 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:06,221 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:06,705 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:06,707 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,708 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:06,711 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:06,713 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:06,716 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:06,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02: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-31 18:02:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02: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-31 18:02:06], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:06,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-31 18:02:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:06,723 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:06,724 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:06], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:13,081 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:13,082 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,083 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:13,083 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:13,084 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:13,089 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:13,091 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:13,096 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,097 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,098 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,099 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,099 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,100 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,101 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,101 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,101 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,102 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,103 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,103 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,104 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,105 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,106 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,108 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,109 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,111 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:13,112 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:13,113 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:13,229 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:13,230 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,232 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:13,233 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:13,234 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:13,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-31 18:02:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:13,263 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:13,264 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,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-31 18:02:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:13,264 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:13,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-31 18:02:13], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:13,265 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:13,265 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:13,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-31 18:02:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:13,265 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:13], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:29,122 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,124 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:29,125 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:29,126 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:29,127 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:29,129 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,137 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,139 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,140 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,141 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,141 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,144 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,144 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,145 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,145 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,146 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,146 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:29,148 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:29,149 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:29,398 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:29,400 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,401 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:29,403 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:29,405 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:29,410 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:29,430 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:29,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-31 18:02:29], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:29,433 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:29,433 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:29], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:31,328 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:31,329 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,330 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:31,331 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:31,331 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:31,332 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:31,334 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:31,337 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,338 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,339 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,340 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,340 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,340 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,341 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,341 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,342 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,342 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,343 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,343 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,343 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,344 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,344 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,346 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,346 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:31,450 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:31,451 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,452 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:31,454 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:31,455 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:31,460 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:31,463 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:31,463 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:31,465 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:31,467 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:31], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:31,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-31 18:02:31], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:43,024 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:43,032 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,035 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,035 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:43,281 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:43,283 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,284 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:43,285 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:43,286 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:43,293 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:43,294 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,295 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:43,296 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:43,296 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:43,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-31 18:02:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:43,298 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:43,952 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:43,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:43,954 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:43,954 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:43,955 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:43,956 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:43,958 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,959 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,959 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,960 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,960 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,963 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,964 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,964 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,965 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,965 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,966 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,966 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,966 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:43,968 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:43,968 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:43,969 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:43], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:44,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-31 18:02:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:44,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-31 18:02:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:44,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-31 18:02:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:44,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-31 18:02:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:44,133 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:44,138 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:44,138 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:44,139 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:44,139 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:44,140 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:44,140 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:44,141 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:44,141 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:44,141 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:44,141 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:44], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:51,577 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:51,578 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,579 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:51,580 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:51,582 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:51,583 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:02:51,584 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:02:51,586 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,587 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,587 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,588 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,589 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,589 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,589 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,590 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,590 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,591 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,591 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,592 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,592 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,592 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,593 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,593 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,594 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,594 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,594 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,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-31 18:02:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:02:51,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-31 18:02:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:02:51,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:02:51,689 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:51,690 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,691 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:51,692 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:51,693 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:51,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:51,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-31 18:02:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:02:51,699 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,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-31 18:02:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:02:51,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:51,700 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:02:51,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:51,700 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:02:51,701 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:02:51,701 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:02:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:21,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-31 18:03:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:21,843 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,843 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:21,844 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:21,845 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:21,846 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:03:21,848 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:03:21,850 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,851 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,852 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,852 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,852 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,853 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,853 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,854 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,854 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,855 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,855 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,856 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,856 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,857 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,857 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,858 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,858 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,858 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,859 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:21,859 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:21,860 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:03:21,861 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:03:22,097 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:22,099 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:22,100 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:22,100 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:22,101 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:22,106 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:22,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-31 18:03:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:22,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-31 18:03:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:22,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:22,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-31 18:03:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:22,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:22,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-31 18:03:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:22,108 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:22,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-31 18:03:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:22,108 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:22], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,712 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:32,712 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,712 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:32,713 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,713 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03: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-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,715 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:32,715 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:03:32,716 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:03:32,960 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:32,961 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,962 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:32,963 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:32,963 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:32,968 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:32,969 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,971 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:32,971 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:32,973 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:32,973 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:32,974 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:32,974 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:32,975 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:32,976 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:32], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:35,417 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,419 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:35,419 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:35,422 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:03:35,425 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,431 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,431 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,431 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,434 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,434 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,434 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,435 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:35,435 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,554 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:35,556 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:35,557 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:35,565 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:35,566 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:35,566 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:35,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-31 18:03:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:35,567 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:35,568 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:35,568 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:35], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,049 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:49,049 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:49,050 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:49,052 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:03:49,054 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,055 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,055 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,058 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:03:49,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-31 18:03:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:03:49,357 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:49,358 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:49,360 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:49,361 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:49,362 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:51,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:51,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-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,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-31 18:03:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:51,049 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:51,049 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:51,050 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:03:51,052 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:03:51,054 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,054 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,054 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,055 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,055 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,056 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,056 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,057 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,057 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,057 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,058 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,058 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,058 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,059 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,059 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,059 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,060 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,060 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,060 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:51,061 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:51,061 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:03:51,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-31 18:03:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:03:54,746 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:54,746 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,747 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:54,747 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:54,748 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:03:54,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:03:54,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,751 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,751 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,752 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:54,753 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,754 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,754 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,755 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:54,758 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,759 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,760 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,760 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,761 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,761 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,762 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,762 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,763 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,763 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,763 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,764 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:54,765 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,766 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,766 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,766 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:54,768 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:54,769 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,769 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,770 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,770 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:54,772 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,775 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,775 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,775 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:03:54,779 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:03:54,779 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:03:54,780 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:03:54,781 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:03:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:03:54,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-31 18:03:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:03,491 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:03,492 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:03,492 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:03,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-31 18:04:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:03,494 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:03,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-31 18:04:03], 访问了[com.greate.community.service.LikeService.like]. +2021-01-31 18:04:03,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-31 18:04:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:03,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-31 18:04:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:03,580 INFO [http-nio-8080-exec-2] o.a.k.c.p.ProducerConfig [AbstractConfig.java:279] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.id = + compression.type = none + connections.max.idle.ms = 540000 + enable.idempotence = false + interceptor.classes = [] + 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 + 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 = 0 + 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 + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] + ssl.endpoint.identification.algorithm = https + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLS + 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-31 18:04:03,589 INFO [http-nio-8080-exec-2] o.a.k.c.u.AppInfoParser [AppInfoParser.java:109] Kafka version : 2.0.1 +2021-01-31 18:04:03,589 INFO [http-nio-8080-exec-2] o.a.k.c.u.AppInfoParser [AppInfoParser.java:110] Kafka commitId : fa14705e51bd2ce5 +2021-01-31 18:04:03,593 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:285] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-31 18:04:07,523 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:07,523 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,524 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:07,524 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:07,548 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:07,554 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:07,579 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:07,580 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,581 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:07,581 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:07,582 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:07,583 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:07,585 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,585 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,586 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,586 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:07,588 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,588 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,589 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,589 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:07,591 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,591 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,592 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,592 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,593 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,593 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,593 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,594 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,594 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,595 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,595 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,595 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:07,597 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,598 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,598 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,599 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:07,601 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:07,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,603 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,603 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,603 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:07,605 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:07,606 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,606 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,607 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,607 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:07,608 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:07,609 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:07,611 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:07,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-31 18:04:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:07,614 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:07,615 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:07,886 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:07,887 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:07,888 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:07,889 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:07,890 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:07], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:12,253 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:12,256 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:12,259 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,289 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:12,290 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:12,290 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:12,291 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:12,294 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,295 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,295 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:12,299 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,299 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:12,302 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,302 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,302 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,303 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,303 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,305 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,305 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,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-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,311 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,312 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:12,313 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:12,315 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,315 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,316 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,316 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:12,317 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:12,318 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,319 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,319 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,320 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:12,321 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:12,322 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,322 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:12,323 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:12,323 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:12,325 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:12,327 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:12,328 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:12,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:12,435 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:12,435 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:12,436 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:12,437 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:12], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:14,674 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:14,676 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,676 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:14,677 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:14,679 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-31 18:04:14,682 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-31 18:04:14,685 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:14,688 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:14,709 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:14,710 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,711 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:14,712 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:14,712 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:14,713 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:14,714 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,715 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,715 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,716 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:14,717 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,718 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,718 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,718 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:14,720 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,721 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,721 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,724 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,725 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,726 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,727 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,727 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:14,728 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,728 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,729 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,729 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:14,730 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:14,731 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,732 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,732 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,733 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:14,734 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:14,735 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,735 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,736 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,736 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:14,738 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:14,739 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,739 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:14,739 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:14,740 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:14,742 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:14,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-31 18:04:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:14,744 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:14,839 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:14,839 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:14,840 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:14,841 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:14,842 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:14], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:04:16,649 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-31 18:04:16,650 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,651 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,651 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,652 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:16,653 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,653 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,654 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,654 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:16,655 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,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-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,658 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,659 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,660 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,660 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,661 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,661 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,662 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:16,663 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,663 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,664 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,664 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:16,665 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:16,666 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,667 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,667 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,668 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:16,669 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:16,670 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,670 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,671 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,671 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:16,672 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:16,673 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,674 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:04:16,674 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-31 18:04:16,675 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-31 18:04:16,677 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-31 18:04:16,678 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:04:16,679 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:04:16,768 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:04:16,769 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:04:16,770 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:04:16,770 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:04:16,771 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:04:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:10,397 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:64] [任务开始] 正在刷新帖子分数: 3 +2021-01-31 18:05:10,496 INFO [communityScheduler_Worker-1] c.g.c.q.PostScoreRefreshJob [PostScoreRefreshJob.java:68] [任务结束] 帖子分数刷新完毕 +2021-01-31 18:05:49,317 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:49,318 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,318 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:49,318 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:49,319 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:49,319 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:05:49,321 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:05:49,323 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,323 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,323 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,324 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,324 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,325 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,325 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,325 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,326 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,326 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,326 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,327 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,327 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,327 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,328 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,328 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,328 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,329 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,329 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,329 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:49,330 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:49,331 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:49,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:49,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:49,567 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:49,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:49,574 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:49,574 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:49,575 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,575 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:49,575 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:49,575 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:49,576 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:49,576 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:49,577 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:49,577 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:49], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:50,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-31 18:05:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:50,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:50,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:50,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:50,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:50,415 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-31 18:05:50,419 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-31 18:05:50,422 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:50,423 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:50,425 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:50,426 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:50], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:51,301 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:51,302 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:51,302 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:51,303 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:51,303 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:51,304 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 18:05:51,308 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:51,308 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 18:05:51,309 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:51,311 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 18:05:51,316 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:51,316 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 18:05:51,320 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:51,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-31 18:05:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-31 18:05:51,326 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:51,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:51,329 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:51,330 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:53,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:53,330 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,331 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:53,331 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:53,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:53,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-31 18:05:53,334 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-31 18:05:53,337 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,338 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,342 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,344 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,344 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,345 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,345 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:53,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-31 18:05:53,358 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:53,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:54,491 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:54,492 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,493 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:54,493 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:54,493 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:54,494 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:05:54,495 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:05:54,497 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,498 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,498 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,499 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,499 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,500 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,500 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,500 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,501 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,501 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,502 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,502 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,502 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,503 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,503 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,504 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,504 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,505 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,505 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,506 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:05:54,506 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:54,507 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:05:54,748 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:54,748 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:54,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:54,751 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:54,755 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:54,756 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:54,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:54,759 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:54,760 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:54,761 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:54,761 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:54,762 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:54,763 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:54], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:57,614 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:05:57,615 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:05:57,615 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:05:57,616 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:05:57,616 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:05:57,617 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:05:57,619 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:05:57], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:01,217 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:01,218 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:01,219 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:01,219 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:01,220 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:01,221 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:01,222 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-31 18:06:01,222 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-31 18:06:01,226 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-31 18:06:01,226 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-31 18:06:01,227 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:01,228 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:01], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:03,538 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:03,539 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,539 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:03,539 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:03,540 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:03,540 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:03,542 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:03,543 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,543 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,544 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,544 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,545 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,545 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,545 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,546 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,546 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,546 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,547 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,547 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,547 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,548 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,548 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,548 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,549 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,549 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,549 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,550 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:03,550 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:03,551 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:03,648 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:03,648 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,649 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:03,650 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:03,650 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:03,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:03,658 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:03,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,659 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:03,659 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:03,659 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:03,659 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:03,660 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:03,660 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:03,660 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:03], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:10,108 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:10,109 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,109 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:10,110 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:10,110 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:10,110 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:10,112 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:10,115 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,115 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,116 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,116 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,117 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,117 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,117 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,118 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,118 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,118 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,118 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,121 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,121 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,121 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:10,122 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:10,123 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:10,218 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:10,219 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,220 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:10,221 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:10,221 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:10,227 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:10,228 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:10,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-31 18:06:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:10,231 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:10,232 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:10,232 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:10,233 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:10], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06: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-31 18:06:10], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:15,696 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:15,697 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,698 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:15,698 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,706 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,706 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,706 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:15,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-31 18:06:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:15,712 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:15,847 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:15,847 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,848 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:15,849 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:15,851 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:15,852 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:15,852 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:15,853 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,853 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:15,854 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:15,854 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:15,855 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:15,855 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:15,856 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:15,856 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:15], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:16,504 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:16,505 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,508 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,508 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,508 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,509 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,509 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,509 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,510 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,510 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,510 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:16,647 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:16,648 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,649 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:16,650 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:16,651 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:16,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-31 18:06:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:16,658 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:16,658 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:16,659 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:16,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:16,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:16], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:17,264 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,264 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:17,264 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:17,265 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,273 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,273 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,273 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,274 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,274 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,274 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:17,278 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:17,377 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:17,378 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,378 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:17,379 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:17,380 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:17,387 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:17,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:17,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:17,389 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:17,390 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:17,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-31 18:06:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:17,929 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,929 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:17,930 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:17,930 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:17,931 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:17,932 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:17,934 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,935 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,935 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,935 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,936 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,936 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,936 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,937 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,937 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,937 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,938 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,938 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,938 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,939 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,939 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,939 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,939 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,940 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,940 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:17,940 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:17,941 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:17,942 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:18,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-31 18:06:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:18,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-31 18:06:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:18,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-31 18:06:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:18,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-31 18:06:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:18,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-31 18:06:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:18,047 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:18,047 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:18,048 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:18,048 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:18,049 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:18,049 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:18,049 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:18,049 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:18,050 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:18,050 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:18], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:23,411 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:23,413 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,413 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:23,419 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,420 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,420 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,421 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,421 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,424 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,424 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,425 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,425 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,425 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,426 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,426 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,426 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,427 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,427 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:23,428 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:23,429 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:23,525 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,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-31 18:06:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:23,527 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:23,527 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:23,528 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:23,529 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,530 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:23,530 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:23,531 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:23,995 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:23,996 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:23,996 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:23,997 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:23,997 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:23,998 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:23,999 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:24,001 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,002 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,002 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,003 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,003 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,004 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,004 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,004 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,005 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,005 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,006 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,006 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,006 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,007 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,007 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,007 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,008 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,008 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,008 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,009 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:24,009 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:24,010 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:24,102 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:24,103 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,104 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:24,105 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:24,106 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:24,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-31 18:06:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:24,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-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,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-31 18:06:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:24,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-31 18:06:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:24,114 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:24,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-31 18:06:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:24,114 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:24,115 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:24,115 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:24,116 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:24], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:25,700 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:25,701 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:25,703 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,705 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,705 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,705 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,706 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,706 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,709 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,710 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,710 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,711 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,711 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,712 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:25,712 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:25,714 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:25,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-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:25,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:25,750 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:25,751 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:25,752 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:25,752 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,753 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:25,753 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:25,753 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:25,753 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:25,754 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:25,754 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:25,754 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:25], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:26,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:26,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:26,302 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:26,302 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:26,303 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-31 18:06:26,304 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-31 18:06:26,306 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,308 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,308 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,308 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,310 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,310 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,310 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,311 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,311 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,311 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,312 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,312 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,312 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-31 18:06:26,313 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-31 18:06:26,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-31 18:06:26,448 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:26,448 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,449 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:26,450 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:26,451 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:26,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-31 18:06:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:26,455 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-31 18:06:26,456 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,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-31 18:06:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-31 18:06:26,457 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:26,457 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.UserService.getAuthorities]. +2021-01-31 18:06:26,457 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:26,457 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordUV]. +2021-01-31 18:06:26,458 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordDAU]. +2021-01-31 18:06:26,458 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-31 18:06:26], 访问了[com.greate.community.service.DataService.recordDAU]. diff --git a/log/community/log_warn.log b/log/community/log_warn.log index 8cb18178..1c5e334e 100644 --- a/log/community/log_warn.log +++ b/log/community/log_warn.log @@ -1,23 +1,14 @@ -2021-01-29 10:47:42,318 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:47:44,453 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:47:46,573 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:47:48,892 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:47:51,234 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:47:54,092 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:47:57,212 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:00,224 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:03,472 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:06,532 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:09,562 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:12,724 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:15,632 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:18,754 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:21,652 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:24,963 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:28,214 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:31,325 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:34,524 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:37,432 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. -2021-01-29 10:48:40,276 WARN [restartedMain] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java:557] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'org.springframework.kafka.config.internalKafkaListenerEndpointRegistry'; nested exception is org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata -2021-01-29 10:52:05,440 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] 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-29 11:04:09,393 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] 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-31 12:41:08,662 WARN [http-nio-8080-exec-2] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.lang.String] +2021-01-31 12:41:53,872 WARN [http-nio-8080-exec-8] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.lang.String] +2021-01-31 12:43:41,269 WARN [http-nio-8080-exec-8] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.lang.String] +2021-01-31 12:46:47,290 WARN [http-nio-8080-exec-2] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.lang.String] +2021-01-31 12:50:56,887 WARN [http-nio-8080-exec-8] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.lang.String] +2021-01-31 13:00:31,265 WARN [http-nio-8080-exec-4] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] 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-31 17:00:56,014 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount] +2021-01-31 17:02:14,746 WARN [http-nio-8080-exec-4] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount] +2021-01-31 17:03:10,083 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount] +2021-01-31 17:03:20,433 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount] +2021-01-31 17:07:07,426 WARN [http-nio-8080-exec-5] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount] +2021-01-31 17:09:49,019 WARN [http-nio-8080-exec-8] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.greate.community.dao.DiscussPostMapper.updateCommentCount] +2021-01-31 17:26:47,312 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}]]] +2021-01-31 17:26:52,632 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{GL6pOJCiTqyKMUgG5cRPbg}{127.0.0.1}{127.0.0.1:9300}]]] diff --git a/log/community/warn/log-warn-2021-01-29.0.log b/log/community/warn/log-warn-2021-01-29.0.log new file mode 100644 index 00000000..8cb18178 --- /dev/null +++ b/log/community/warn/log-warn-2021-01-29.0.log @@ -0,0 +1,23 @@ +2021-01-29 10:47:42,318 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:47:44,453 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:47:46,573 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:47:48,892 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:47:51,234 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:47:54,092 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:47:57,212 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:00,224 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:03,472 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:06,532 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:09,562 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:12,724 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:15,632 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:18,754 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:21,652 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:24,963 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:28,214 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:31,325 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:34,524 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:37,432 WARN [restartedMain] o.a.k.c.NetworkClient [NetworkClient.java:671] [Consumer clientId=consumer-1, groupId=test-consumer-group] Connection to node -1 could not be established. Broker may not be available. +2021-01-29 10:48:40,276 WARN [restartedMain] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java:557] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'org.springframework.kafka.config.internalKafkaListenerEndpointRegistry'; nested exception is org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata +2021-01-29 10:52:05,440 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] 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-29 11:04:09,393 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] 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"] diff --git a/log/community/warn/log-warn-2021-01-30.0.log b/log/community/warn/log-warn-2021-01-30.0.log new file mode 100644 index 00000000..22b989cc --- /dev/null +++ b/log/community/warn/log-warn-2021-01-30.0.log @@ -0,0 +1,2 @@ +2021-01-30 21:03:16,649 WARN [http-nio-8080-exec-4] o.s.w.s.m.s.DefaultHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported] +2021-01-30 21:03:31,531 WARN [http-nio-8080-exec-8] o.s.w.s.m.s.DefaultHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:198] Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported] diff --git a/pom.xml b/pom.xml index d4ea34a5..ced97370 100644 --- a/pom.xml +++ b/pom.xml @@ -109,6 +109,18 @@ spring-boot-starter-data-elasticsearch + + + org.springframework.boot + spring-boot-starter-security + + + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + + com.alibaba @@ -116,6 +128,12 @@ 1.2.58 + + + org.springframework.boot + spring-boot-starter-quartz + + org.projectlombok diff --git a/sql/init_quartz.sql b/sql/init_quartz.sql new file mode 100644 index 00000000..8968c23f --- /dev/null +++ b/sql/init_quartz.sql @@ -0,0 +1,179 @@ +# +# In your Quartz properties file, you'll need to set +# org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate +# +# +# By: Ron Cordell - roncordell +# I didn't see this anywhere, so I thought I'd post it here. This is the script from Quartz to create the tables in a MySQL database, modified to use INNODB instead of MYISAM. + +DROP TABLE IF EXISTS QRTZ_FIRED_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_PAUSED_TRIGGER_GRPS; +DROP TABLE IF EXISTS QRTZ_SCHEDULER_STATE; +DROP TABLE IF EXISTS QRTZ_LOCKS; +DROP TABLE IF EXISTS QRTZ_SIMPLE_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_SIMPROP_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_CRON_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_BLOB_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_JOB_DETAILS; +DROP TABLE IF EXISTS QRTZ_CALENDARS; + +CREATE TABLE QRTZ_JOB_DETAILS( +SCHED_NAME VARCHAR(120) NOT NULL, +JOB_NAME VARCHAR(190) NOT NULL, +JOB_GROUP VARCHAR(190) NOT NULL, +DESCRIPTION VARCHAR(250) NULL, +JOB_CLASS_NAME VARCHAR(250) NOT NULL, +IS_DURABLE VARCHAR(1) NOT NULL, +IS_NONCONCURRENT VARCHAR(1) NOT NULL, +IS_UPDATE_DATA VARCHAR(1) NOT NULL, +REQUESTS_RECOVERY VARCHAR(1) NOT NULL, +JOB_DATA BLOB NULL, +PRIMARY KEY (SCHED_NAME,JOB_NAME,JOB_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_TRIGGERS ( +SCHED_NAME VARCHAR(120) NOT NULL, +TRIGGER_NAME VARCHAR(190) NOT NULL, +TRIGGER_GROUP VARCHAR(190) NOT NULL, +JOB_NAME VARCHAR(190) NOT NULL, +JOB_GROUP VARCHAR(190) NOT NULL, +DESCRIPTION VARCHAR(250) NULL, +NEXT_FIRE_TIME BIGINT(13) NULL, +PREV_FIRE_TIME BIGINT(13) NULL, +PRIORITY INTEGER NULL, +TRIGGER_STATE VARCHAR(16) NOT NULL, +TRIGGER_TYPE VARCHAR(8) NOT NULL, +START_TIME BIGINT(13) NOT NULL, +END_TIME BIGINT(13) NULL, +CALENDAR_NAME VARCHAR(190) NULL, +MISFIRE_INSTR SMALLINT(2) NULL, +JOB_DATA BLOB NULL, +PRIMARY KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP), +FOREIGN KEY (SCHED_NAME,JOB_NAME,JOB_GROUP) +REFERENCES QRTZ_JOB_DETAILS(SCHED_NAME,JOB_NAME,JOB_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_SIMPLE_TRIGGERS ( +SCHED_NAME VARCHAR(120) NOT NULL, +TRIGGER_NAME VARCHAR(190) NOT NULL, +TRIGGER_GROUP VARCHAR(190) NOT NULL, +REPEAT_COUNT BIGINT(7) NOT NULL, +REPEAT_INTERVAL BIGINT(12) NOT NULL, +TIMES_TRIGGERED BIGINT(10) NOT NULL, +PRIMARY KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP), +FOREIGN KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP) +REFERENCES QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_CRON_TRIGGERS ( +SCHED_NAME VARCHAR(120) NOT NULL, +TRIGGER_NAME VARCHAR(190) NOT NULL, +TRIGGER_GROUP VARCHAR(190) NOT NULL, +CRON_EXPRESSION VARCHAR(120) NOT NULL, +TIME_ZONE_ID VARCHAR(80), +PRIMARY KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP), +FOREIGN KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP) +REFERENCES QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_SIMPROP_TRIGGERS + ( + SCHED_NAME VARCHAR(120) NOT NULL, + TRIGGER_NAME VARCHAR(190) NOT NULL, + TRIGGER_GROUP VARCHAR(190) NOT NULL, + STR_PROP_1 VARCHAR(512) NULL, + STR_PROP_2 VARCHAR(512) NULL, + STR_PROP_3 VARCHAR(512) NULL, + INT_PROP_1 INT NULL, + INT_PROP_2 INT NULL, + LONG_PROP_1 BIGINT NULL, + LONG_PROP_2 BIGINT NULL, + DEC_PROP_1 NUMERIC(13,4) NULL, + DEC_PROP_2 NUMERIC(13,4) NULL, + BOOL_PROP_1 VARCHAR(1) NULL, + BOOL_PROP_2 VARCHAR(1) NULL, + PRIMARY KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP), + FOREIGN KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP) + REFERENCES QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_BLOB_TRIGGERS ( +SCHED_NAME VARCHAR(120) NOT NULL, +TRIGGER_NAME VARCHAR(190) NOT NULL, +TRIGGER_GROUP VARCHAR(190) NOT NULL, +BLOB_DATA BLOB NULL, +PRIMARY KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP), +INDEX (SCHED_NAME,TRIGGER_NAME, TRIGGER_GROUP), +FOREIGN KEY (SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP) +REFERENCES QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_CALENDARS ( +SCHED_NAME VARCHAR(120) NOT NULL, +CALENDAR_NAME VARCHAR(190) NOT NULL, +CALENDAR BLOB NOT NULL, +PRIMARY KEY (SCHED_NAME,CALENDAR_NAME)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_PAUSED_TRIGGER_GRPS ( +SCHED_NAME VARCHAR(120) NOT NULL, +TRIGGER_GROUP VARCHAR(190) NOT NULL, +PRIMARY KEY (SCHED_NAME,TRIGGER_GROUP)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_FIRED_TRIGGERS ( +SCHED_NAME VARCHAR(120) NOT NULL, +ENTRY_ID VARCHAR(95) NOT NULL, +TRIGGER_NAME VARCHAR(190) NOT NULL, +TRIGGER_GROUP VARCHAR(190) NOT NULL, +INSTANCE_NAME VARCHAR(190) NOT NULL, +FIRED_TIME BIGINT(13) NOT NULL, +SCHED_TIME BIGINT(13) NOT NULL, +PRIORITY INTEGER NOT NULL, +STATE VARCHAR(16) NOT NULL, +JOB_NAME VARCHAR(190) NULL, +JOB_GROUP VARCHAR(190) NULL, +IS_NONCONCURRENT VARCHAR(1) NULL, +REQUESTS_RECOVERY VARCHAR(1) NULL, +PRIMARY KEY (SCHED_NAME,ENTRY_ID)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_SCHEDULER_STATE ( +SCHED_NAME VARCHAR(120) NOT NULL, +INSTANCE_NAME VARCHAR(190) NOT NULL, +LAST_CHECKIN_TIME BIGINT(13) NOT NULL, +CHECKIN_INTERVAL BIGINT(13) NOT NULL, +PRIMARY KEY (SCHED_NAME,INSTANCE_NAME)) +ENGINE=InnoDB; + +CREATE TABLE QRTZ_LOCKS ( +SCHED_NAME VARCHAR(120) NOT NULL, +LOCK_NAME VARCHAR(40) NOT NULL, +PRIMARY KEY (SCHED_NAME,LOCK_NAME)) +ENGINE=InnoDB; + +CREATE INDEX IDX_QRTZ_J_REQ_RECOVERY ON QRTZ_JOB_DETAILS(SCHED_NAME,REQUESTS_RECOVERY); +CREATE INDEX IDX_QRTZ_J_GRP ON QRTZ_JOB_DETAILS(SCHED_NAME,JOB_GROUP); + +CREATE INDEX IDX_QRTZ_T_J ON QRTZ_TRIGGERS(SCHED_NAME,JOB_NAME,JOB_GROUP); +CREATE INDEX IDX_QRTZ_T_JG ON QRTZ_TRIGGERS(SCHED_NAME,JOB_GROUP); +CREATE INDEX IDX_QRTZ_T_C ON QRTZ_TRIGGERS(SCHED_NAME,CALENDAR_NAME); +CREATE INDEX IDX_QRTZ_T_G ON QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_GROUP); +CREATE INDEX IDX_QRTZ_T_STATE ON QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_STATE); +CREATE INDEX IDX_QRTZ_T_N_STATE ON QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP,TRIGGER_STATE); +CREATE INDEX IDX_QRTZ_T_N_G_STATE ON QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_GROUP,TRIGGER_STATE); +CREATE INDEX IDX_QRTZ_T_NEXT_FIRE_TIME ON QRTZ_TRIGGERS(SCHED_NAME,NEXT_FIRE_TIME); +CREATE INDEX IDX_QRTZ_T_NFT_ST ON QRTZ_TRIGGERS(SCHED_NAME,TRIGGER_STATE,NEXT_FIRE_TIME); +CREATE INDEX IDX_QRTZ_T_NFT_MISFIRE ON QRTZ_TRIGGERS(SCHED_NAME,MISFIRE_INSTR,NEXT_FIRE_TIME); +CREATE INDEX IDX_QRTZ_T_NFT_ST_MISFIRE ON QRTZ_TRIGGERS(SCHED_NAME,MISFIRE_INSTR,NEXT_FIRE_TIME,TRIGGER_STATE); +CREATE INDEX IDX_QRTZ_T_NFT_ST_MISFIRE_GRP ON QRTZ_TRIGGERS(SCHED_NAME,MISFIRE_INSTR,NEXT_FIRE_TIME,TRIGGER_GROUP,TRIGGER_STATE); + +CREATE INDEX IDX_QRTZ_FT_TRIG_INST_NAME ON QRTZ_FIRED_TRIGGERS(SCHED_NAME,INSTANCE_NAME); +CREATE INDEX IDX_QRTZ_FT_INST_JOB_REQ_RCVRY ON QRTZ_FIRED_TRIGGERS(SCHED_NAME,INSTANCE_NAME,REQUESTS_RECOVERY); +CREATE INDEX IDX_QRTZ_FT_J_G ON QRTZ_FIRED_TRIGGERS(SCHED_NAME,JOB_NAME,JOB_GROUP); +CREATE INDEX IDX_QRTZ_FT_JG ON QRTZ_FIRED_TRIGGERS(SCHED_NAME,JOB_GROUP); +CREATE INDEX IDX_QRTZ_FT_T_G ON QRTZ_FIRED_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP); +CREATE INDEX IDX_QRTZ_FT_TG ON QRTZ_FIRED_TRIGGERS(SCHED_NAME,TRIGGER_GROUP); + +commit; diff --git a/src/main/java/com/greate/community/config/QuartzConfig.java b/src/main/java/com/greate/community/config/QuartzConfig.java new file mode 100644 index 00000000..52921311 --- /dev/null +++ b/src/main/java/com/greate/community/config/QuartzConfig.java @@ -0,0 +1,46 @@ +package com.greate.community.config; + +import com.greate.community.quartz.PostScoreRefreshJob; +import org.quartz.JobDataMap; +import org.quartz.JobDetail; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.scheduling.quartz.JobDetailFactoryBean; +import org.springframework.scheduling.quartz.SimpleTriggerFactoryBean; + +/** + * Spring Quartz 配置类,用于将数据存入数据库,以后直接从数据库中调用数据 + */ +@Configuration +public class QuartzConfig { + + /** + * 刷新帖子分数任务 + * @return + */ + @Bean + public JobDetailFactoryBean postScoreRefreshJobDetail() { + JobDetailFactoryBean factoryBean = new JobDetailFactoryBean(); + factoryBean.setJobClass(PostScoreRefreshJob.class); + factoryBean.setName("postScoreRefreshJob"); + factoryBean.setGroup("communityJobGroup"); + factoryBean.setDurability(true); + factoryBean.setRequestsRecovery(true); + return factoryBean; + } + + /** + * 刷新帖子分数触发器 + * @return + */ + @Bean + public SimpleTriggerFactoryBean postScoreRefreshTrigger(JobDetail postScoreRefreshJobDetail) { + SimpleTriggerFactoryBean factoryBean = new SimpleTriggerFactoryBean(); + factoryBean.setJobDetail(postScoreRefreshJobDetail); + factoryBean.setName("postScoreRefreshTrigger"); + factoryBean.setGroup("communityTriggerGroup"); + factoryBean.setRepeatInterval(1000 * 60 * 5); // 5分钟刷新一次 + factoryBean.setJobDataMap(new JobDataMap()); + return factoryBean; + } +} diff --git a/src/main/java/com/greate/community/config/SecurityConfig.java b/src/main/java/com/greate/community/config/SecurityConfig.java new file mode 100644 index 00000000..5f1af8e4 --- /dev/null +++ b/src/main/java/com/greate/community/config/SecurityConfig.java @@ -0,0 +1,123 @@ +package com.greate.community.config; + +import com.greate.community.util.CommunityConstant; +import com.greate.community.util.CommunityUtil; +import org.springframework.context.annotation.Configuration; +import org.springframework.security.access.AccessDeniedException; +import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.builders.WebSecurity; +import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; +import org.springframework.security.core.AuthenticationException; +import org.springframework.security.web.AuthenticationEntryPoint; +import org.springframework.security.web.access.AccessDeniedHandler; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; +import java.io.PrintWriter; + +@Configuration +public class SecurityConfig extends WebSecurityConfigurerAdapter implements CommunityConstant { + + /** + * 静态资源 + * @param web + * @throws Exception + */ + @Override + public void configure(WebSecurity web) throws Exception { + web.ignoring().antMatchers("/resources/**"); + } + + // 认证环节我们使用自己的代码 LoginController,绕过 Spring Security 的 + + + /** + * 授权 + * @param http + * @throws Exception + */ + @Override + protected void configure(HttpSecurity http) throws Exception { + http.authorizeRequests() + .antMatchers( + "/user/setting", + "/user/upload", + "/discuss/add", + "/comment/add", + "/letter/**", + "/notice/**", + "/like", + "/follow", + "/unfollow" + ) + .hasAnyAuthority( + AUTHORITY_USER, + AUTHORITY_ADMIN, + AUTHORITY_MODERATOR + ) + + .antMatchers( + "/discuss/top", + "/discuss/wonderful" + ) + .hasAnyAuthority( + AUTHORITY_MODERATOR + ) + + .antMatchers( + "/discuss/delete", + "/data/**" + ) + .hasAnyAuthority( + AUTHORITY_ADMIN + ) + + .anyRequest().permitAll() + + .and().csrf().disable(); + + // 权限不够时的处理 + http.exceptionHandling() + // 1. 未登录时的处理 + .authenticationEntryPoint(new AuthenticationEntryPoint() { + @Override + public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException e) throws IOException, ServletException { + String xRequestedWith = request.getHeader("x-requested-with"); + if ("XMLHttpRequest".equals(xRequestedWith)) { + // 异步请求 + response.setContentType("application/plain;charset=utf-8"); + PrintWriter writer = response.getWriter(); + writer.write(CommunityUtil.getJSONString(403, "你还没有登录")); + } + else { + // 普通请求 + response.sendRedirect(request.getContextPath() + "/login"); + } + } + }) + // 2. 权限不够时的处理 + .accessDeniedHandler(new AccessDeniedHandler() { + @Override + public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException e) throws IOException, ServletException { + String xRequestedWith = request.getHeader("x-requested-with"); + if ("XMLHttpRequest".equals(xRequestedWith)) { + // 异步请求 + response.setContentType("application/plain;charset=utf-8"); + PrintWriter writer = response.getWriter(); + writer.write(CommunityUtil.getJSONString(403, "你没有访问该功能的权限")); + } + else { + // 普通请求 + response.sendRedirect(request.getContextPath() + "/denied"); + } + } + }); + + // Security 底层会默认拦截 /logout 请求,进行退出处理 + // 此处赋予它一个根本不存在的退出路径,使得程序能够执行到我们自己编写的退出代码 + http.logout().logoutUrl("/securitylogout"); + } +} diff --git a/src/main/java/com/greate/community/config/WebMvcConfig.java b/src/main/java/com/greate/community/config/WebMvcConfig.java index 6b8e36fe..ca984d2c 100644 --- a/src/main/java/com/greate/community/config/WebMvcConfig.java +++ b/src/main/java/com/greate/community/config/WebMvcConfig.java @@ -1,5 +1,6 @@ package com.greate.community.config; +import com.greate.community.controller.interceptor.DataInterceptor; import com.greate.community.controller.interceptor.LoginRequiredInterceptor; import com.greate.community.controller.interceptor.LoginTicketInterceptor; import com.greate.community.controller.interceptor.MessageInterceptor; @@ -17,12 +18,15 @@ public class WebMvcConfig implements WebMvcConfigurer { @Autowired private LoginTicketInterceptor loginTicketInterceptor; - @Autowired - private LoginRequiredInterceptor loginRequiredInterceptor; + // @Autowired + // private LoginRequiredInterceptor loginRequiredInterceptor; @Autowired private MessageInterceptor messageInterceptor; + @Autowired + private DataInterceptor dataInterceptor; + @Override public void addInterceptors(InterceptorRegistry registry) { // 对除静态资源外所有路径进行拦截 @@ -30,11 +34,14 @@ public class WebMvcConfig implements WebMvcConfigurer { .excludePathPatterns("/css/**", "/js/**", "/img/**"); // 对除静态资源外所有路径进行拦截 - registry.addInterceptor(loginRequiredInterceptor) - .excludePathPatterns("/css/**", "/js/**", "/img/**"); + // registry.addInterceptor(loginRequiredInterceptor) + // .excludePathPatterns("/css/**", "/js/**", "/img/**"); registry.addInterceptor(messageInterceptor) .excludePathPatterns("/css/**", "/js/**", "/img/**"); + + registry.addInterceptor(dataInterceptor) + .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 e19636b7..3c9ed9fb 100644 --- a/src/main/java/com/greate/community/controller/CommentController.java +++ b/src/main/java/com/greate/community/controller/CommentController.java @@ -8,7 +8,9 @@ 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 com.greate.community.util.RedisKeyUtil; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Controller; import org.springframework.stereotype.Service; import org.springframework.web.bind.annotation.GetMapping; @@ -37,6 +39,9 @@ public class CommentController implements CommunityConstant { @Autowired private EventProducer eventProducer; + @Autowired + private RedisTemplate redisTemplate; + /** * 添加评论 * @param discussPostId @@ -75,6 +80,10 @@ public class CommentController implements CommunityConstant { .setEntityType(ENTITY_TYPE_POST) .setEntityId(discussPostId); eventProducer.fireEvent(event); + + // 计算帖子分数 + String redisKey = RedisKeyUtil.getPostScoreKey(); + redisTemplate.opsForSet().add(redisKey, discussPostId); } return "redirect:/discuss/detail/" + discussPostId; diff --git a/src/main/java/com/greate/community/controller/DataController.java b/src/main/java/com/greate/community/controller/DataController.java new file mode 100644 index 00000000..69b139dc --- /dev/null +++ b/src/main/java/com/greate/community/controller/DataController.java @@ -0,0 +1,67 @@ +package com.greate.community.controller; + +import com.greate.community.service.DataService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.format.annotation.DateTimeFormat; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; + +import java.util.Date; + +/** + * 网站数据 + */ +@Controller +public class DataController { + + @Autowired + private DataService dataService; + + /** + * 进入统计界面 + * @return + */ + @RequestMapping(value = "/data", method = {RequestMethod.GET, RequestMethod.POST}) + public String getDataPage() { + return "/site/admin/data"; + } + + /** + * 统计网站 uv + * @param start + * @param end + * @return + */ + @PostMapping("/data/uv") + public String getUV(@DateTimeFormat(pattern = "yyyy-MM-dd") Date start, + @DateTimeFormat(pattern = "yyyy-MM-dd") Date end, + Model model) { + long uv = dataService.calculateUV(start, end); + model.addAttribute("uvResult", uv); + model.addAttribute("uvStartDate", start); + model.addAttribute("uvEndDate", end); + return "forward:/data"; + } + + /** + * 统计网站 DAU + * @param start + * @param end + * @return + */ + @PostMapping("/data/dau") + public String getDAU(@DateTimeFormat(pattern = "yyyy-MM-dd") Date start, + @DateTimeFormat(pattern = "yyyy-MM-dd") Date end, + Model model) { + long dau = dataService.calculateDAU(start, end); + model.addAttribute("dauResult", dau); + model.addAttribute("dauStartDate", start); + model.addAttribute("dauEndDate", end); + return "forward:/data"; + } + +} diff --git a/src/main/java/com/greate/community/controller/DiscussPostController.java b/src/main/java/com/greate/community/controller/DiscussPostController.java index 6f3bc8be..73f43c93 100644 --- a/src/main/java/com/greate/community/controller/DiscussPostController.java +++ b/src/main/java/com/greate/community/controller/DiscussPostController.java @@ -9,11 +9,14 @@ 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 com.greate.community.util.RedisKeyUtil; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; +import javax.annotation.Resource; import java.util.*; /** @@ -41,6 +44,9 @@ public class DiscussPostController implements CommunityConstant { @Autowired private EventProducer eventProducer; + @Autowired + private RedisTemplate redisTemplate; + /** * 添加帖子(发帖) * @param title @@ -71,6 +77,10 @@ public class DiscussPostController implements CommunityConstant { .setEntityId(discussPost.getId()); eventProducer.fireEvent(event); + // 计算帖子分数 + String redisKey = RedisKeyUtil.getPostScoreKey(); + redisTemplate.opsForSet().add(redisKey, discussPost.getId()); + return CommunityUtil.getJSONString(0, "发布成功"); } @@ -156,6 +166,75 @@ public class DiscussPostController implements CommunityConstant { } + /** + * 置顶帖子 + * @param id + * @return + */ + @PostMapping("/top") + @ResponseBody + public String setTop(int id) { + discussPostSerivce.updateType(id, 1); + + // 触发发帖事件,通过消息队列将其存入 Elasticsearch 服务器 + Event event = new Event() + .setTopic(TOPIC_PUBLISH) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(ENTITY_TYPE_POST) + .setEntityId(id); + eventProducer.fireEvent(event); + + return CommunityUtil.getJSONString(0); + } + + + /** + * 加精帖子 + * @param id + * @return + */ + @PostMapping("/wonderful") + @ResponseBody + public String setWonderful(int id) { + discussPostSerivce.updateStatus(id, 1); + + // 触发发帖事件,通过消息队列将其存入 Elasticsearch 服务器 + Event event = new Event() + .setTopic(TOPIC_PUBLISH) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(ENTITY_TYPE_POST) + .setEntityId(id); + eventProducer.fireEvent(event); + + // 计算帖子分数 + String redisKey = RedisKeyUtil.getPostScoreKey(); + redisTemplate.opsForSet().add(redisKey, id); + + return CommunityUtil.getJSONString(0); + } + + + /** + * 删除帖子 + * @param id + * @return + */ + @PostMapping("/delete") + @ResponseBody + public String setDelete(int id) { + discussPostSerivce.updateStatus(id, 2); + + // 触发删帖事件,通过消息队列更新 Elasticsearch 服务器 + Event event = new Event() + .setTopic(TOPIC_DELETE) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(ENTITY_TYPE_POST) + .setEntityId(id); + eventProducer.fireEvent(event); + + return CommunityUtil.getJSONString(0); + } + diff --git a/src/main/java/com/greate/community/controller/HomeController.java b/src/main/java/com/greate/community/controller/HomeController.java index 38450c7e..417ff6cf 100644 --- a/src/main/java/com/greate/community/controller/HomeController.java +++ b/src/main/java/com/greate/community/controller/HomeController.java @@ -11,6 +11,7 @@ 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.RequestParam; import java.util.ArrayList; import java.util.HashMap; @@ -36,16 +37,17 @@ public class HomeController implements CommunityConstant { * 进入首页 * @param model * @param page + * @param orderMode 默认是 0(最新) * @return */ @GetMapping("/index") - public String getIndexPage(Model model, Page page) { + public String getIndexPage(Model model, Page page, @RequestParam(name = "orderMode", defaultValue = "0") int orderMode) { // 获取总页数 page.setRows(discussPostSerivce.findDiscussPostRows(0)); - page.setPath("/index"); + page.setPath("/index?orderMode=" + orderMode); // 分页查询 - List list = discussPostSerivce.findDiscussPosts(0, page.getOffset(), page.getLimit()); + List list = discussPostSerivce.findDiscussPosts(0, page.getOffset(), page.getLimit(), orderMode); // 封装帖子和该帖子对应的用户信息 List> discussPosts = new ArrayList<>(); if (list != null) { @@ -61,6 +63,7 @@ public class HomeController implements CommunityConstant { } } model.addAttribute("discussPosts", discussPosts); + model.addAttribute("orderMode", orderMode); return "index"; } @@ -73,4 +76,13 @@ public class HomeController implements CommunityConstant { return "/error/500"; } + /** + * 没有权限访问时的错误界面(也是 404) + * @return + */ + @GetMapping("/denied") + public String getDeniedPage() { + return "/error/404"; + } + } diff --git a/src/main/java/com/greate/community/controller/LikeController.java b/src/main/java/com/greate/community/controller/LikeController.java index c7c2d4d9..d6d177eb 100644 --- a/src/main/java/com/greate/community/controller/LikeController.java +++ b/src/main/java/com/greate/community/controller/LikeController.java @@ -9,7 +9,9 @@ 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 com.greate.community.util.RedisKeyUtil; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.ResponseBody; @@ -32,6 +34,9 @@ public class LikeController implements CommunityConstant { @Autowired private EventProducer eventProducer; + @Autowired + private RedisTemplate redisTemplate; + /** * 点赞 * @param entityType @@ -67,6 +72,12 @@ public class LikeController implements CommunityConstant { eventProducer.fireEvent(event); } + if (entityType == ENTITY_TYPE_POST) { + // 计算帖子分数 + String redisKey = RedisKeyUtil.getPostScoreKey(); + redisTemplate.opsForSet().add(redisKey, postId); + } + 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 0540c827..c99e4753 100644 --- a/src/main/java/com/greate/community/controller/LoginController.java +++ b/src/main/java/com/greate/community/controller/LoginController.java @@ -12,6 +12,7 @@ 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.security.core.context.SecurityContextHolder; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; @@ -207,6 +208,7 @@ public class LoginController implements CommunityConstant { @GetMapping("/logout") public String logout(@CookieValue("ticket") String ticket) { userService.logout(ticket); + SecurityContextHolder.clearContext(); return "redirect:/login"; } diff --git a/src/main/java/com/greate/community/controller/MessageController.java b/src/main/java/com/greate/community/controller/MessageController.java index 4ab8b3c9..13887c29 100644 --- a/src/main/java/com/greate/community/controller/MessageController.java +++ b/src/main/java/com/greate/community/controller/MessageController.java @@ -203,8 +203,9 @@ public class MessageController implements CommunityConstant { // 查询评论类通知 Message message = messageService.findLatestNotice(user.getId(), TOPIC_COMMNET); // 封装通知需要的各种数据 - Map messageVO = new HashMap<>(); if (message != null) { + Map messageVO = new HashMap<>(); + messageVO.put("message", message); String content = HtmlUtils.htmlUnescape(message.getContent()); @@ -220,13 +221,15 @@ public class MessageController implements CommunityConstant { int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_COMMNET); messageVO.put("unread", unread); + + model.addAttribute("commentNotice", messageVO); } - model.addAttribute("commentNotice", messageVO); // 查询点赞类通知 message = messageService.findLatestNotice(user.getId(), TOPIC_LIKE); - messageVO = new HashMap<>(); if (message != null) { + Map messageVO = new HashMap<>(); + messageVO.put("message", message); String content = HtmlUtils.htmlUnescape(message.getContent()); @@ -242,13 +245,15 @@ public class MessageController implements CommunityConstant { int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_LIKE); messageVO.put("unread", unread); + + model.addAttribute("likeNotice", messageVO); } - model.addAttribute("likeNotice", messageVO); // 查询关注类通知 message = messageService.findLatestNotice(user.getId(), TOPIC_FOLLOW); - messageVO = new HashMap<>(); if (message != null) { + Map messageVO = new HashMap<>(); + messageVO.put("message", message); String content = HtmlUtils.htmlUnescape(message.getContent()); @@ -263,8 +268,9 @@ public class MessageController implements CommunityConstant { int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_FOLLOW); messageVO.put("unread", unread); + + model.addAttribute("followNotice", messageVO); } - model.addAttribute("followNotice", messageVO); // 查询未读消息数量 int letterUnreadCount = messageService.findLetterUnreadCount(user.getId(), null); diff --git a/src/main/java/com/greate/community/controller/SearchController.java b/src/main/java/com/greate/community/controller/SearchController.java index f645d7e2..71459760 100644 --- a/src/main/java/com/greate/community/controller/SearchController.java +++ b/src/main/java/com/greate/community/controller/SearchController.java @@ -12,10 +12,7 @@ import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.*; /** * 搜索 diff --git a/src/main/java/com/greate/community/controller/interceptor/DataInterceptor.java b/src/main/java/com/greate/community/controller/interceptor/DataInterceptor.java new file mode 100644 index 00000000..f2d00321 --- /dev/null +++ b/src/main/java/com/greate/community/controller/interceptor/DataInterceptor.java @@ -0,0 +1,36 @@ +package com.greate.community.controller.interceptor; + +import com.greate.community.entity.User; +import com.greate.community.service.DataService; +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 javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +@Component +public class DataInterceptor implements HandlerInterceptor { + + @Autowired + private DataService dataService; + + @Autowired + private HostHolder hostHolder; + + @Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { + // 统计 UV + String ip = request.getRemoteHost(); + dataService.recordUV(ip); + + // 统计 DAU + User user = hostHolder.getUser(); + if (user != null) { + dataService.recordDAU(user.getId()); + } + + return true; + } +} diff --git a/src/main/java/com/greate/community/controller/interceptor/LoginTicketInterceptor.java b/src/main/java/com/greate/community/controller/interceptor/LoginTicketInterceptor.java index 9fb15182..578d3544 100644 --- a/src/main/java/com/greate/community/controller/interceptor/LoginTicketInterceptor.java +++ b/src/main/java/com/greate/community/controller/interceptor/LoginTicketInterceptor.java @@ -6,6 +6,10 @@ import com.greate.community.service.UserService; import com.greate.community.util.CookieUtil; import com.greate.community.util.HostHolder; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.security.core.context.SecurityContextImpl; import org.springframework.stereotype.Component; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; @@ -44,6 +48,12 @@ public class LoginTicketInterceptor implements HandlerInterceptor { User user = userService.findUserById(loginTicket.getUserId()); // 在本次请求中持有用户信息 hostHolder.setUser(user); + + // 构建用户认证的结果,并存入 SecurityContext, 以便于 Spring Security 进行授权 + Authentication authentication = new UsernamePasswordAuthenticationToken( + user, user.getPassword(), userService.getAuthorities(user.getId()) + ); + SecurityContextHolder.setContext(new SecurityContextImpl(authentication)); } } @@ -77,5 +87,6 @@ public class LoginTicketInterceptor implements HandlerInterceptor { @Override public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception { hostHolder.clear(); + SecurityContextHolder.clearContext(); } } diff --git a/src/main/java/com/greate/community/dao/DiscussPostMapper.java b/src/main/java/com/greate/community/dao/DiscussPostMapper.java index 8c36658d..3f656f28 100644 --- a/src/main/java/com/greate/community/dao/DiscussPostMapper.java +++ b/src/main/java/com/greate/community/dao/DiscussPostMapper.java @@ -16,9 +16,10 @@ public interface DiscussPostMapper { * 当传入的 userId != 0 时,查找该指定用户的帖子 * @param offset 每页的起始索引 * @param limit 每页显示多少条数据 + * @param orderMode 排行模式(若传入 1, 则按照热度来排序) * @return */ - List selectDiscussPosts(int userId, int offset, int limit); + List selectDiscussPosts(int userId, int offset, int limit, int orderMode); /** * 查询讨论贴的个数 @@ -42,6 +43,35 @@ public interface DiscussPostMapper { */ DiscussPost selectDiscussPostById(int id); - // 修改评论数量 + /** + * 修改评论数量 + * @param id + * @param commentCount + * @return + */ int updateCommentCount(int id, int commentCount); + + /** + * 修改帖子类型:0-普通; 1-置顶; + * @param id + * @param type + * @return + */ + int updateType(int id, int type); + + /** + * 修改帖子状态:0-正常; 1-精华; 2-拉黑; + * @param id + * @param status + * @return + */ + int updateStatus(int id, int status); + + /** + * 修改帖子分数 + * @param id + * @param score + * @return + */ + int updateScore(int id, double score); } diff --git a/src/main/java/com/greate/community/event/EventConsumer.java b/src/main/java/com/greate/community/event/EventConsumer.java index 2fe22403..6c765652 100644 --- a/src/main/java/com/greate/community/event/EventConsumer.java +++ b/src/main/java/com/greate/community/event/EventConsumer.java @@ -95,4 +95,23 @@ public class EventConsumer implements CommunityConstant { } + /** + * 消费删帖事件 + */ + @KafkaListener(topics = {TOPIC_DELETE}) + public void handleDeleteMessage(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 ; + } + + elasticsearchService.deleteDiscusspost(event.getEntityId()); + + } + } diff --git a/src/main/java/com/greate/community/quartz/PostScoreRefreshJob.java b/src/main/java/com/greate/community/quartz/PostScoreRefreshJob.java new file mode 100644 index 00000000..61a2dc16 --- /dev/null +++ b/src/main/java/com/greate/community/quartz/PostScoreRefreshJob.java @@ -0,0 +1,102 @@ +package com.greate.community.quartz; + +import com.greate.community.entity.DiscussPost; +import com.greate.community.service.DiscussPostSerivce; +import com.greate.community.service.ElasticsearchService; +import com.greate.community.service.LikeService; +import com.greate.community.util.CommunityConstant; +import com.greate.community.util.RedisKeyUtil; +import io.lettuce.core.RedisURI; +import javafx.geometry.Pos; +import org.quartz.Job; +import org.quartz.JobExecutionContext; +import org.quartz.JobExecutionException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.BoundSetOperations; +import org.springframework.data.redis.core.RedisTemplate; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; + +/** + * 帖子分数计算刷新 + */ +public class PostScoreRefreshJob implements Job, CommunityConstant { + + private static final Logger logger = LoggerFactory.getLogger(PostScoreRefreshJob.class); + + @Autowired + private RedisTemplate redisTemplate; + + @Autowired + private DiscussPostSerivce discussPostSerivce; + + @Autowired + private LikeService likeService; + + @Autowired + private ElasticsearchService elasticsearchService; + + // Epoch 纪元 + private static final Date epoch; + + static { + try { + epoch = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2014-01-01 00:00:00"); + } catch (ParseException e) { + throw new RuntimeException("初始化 Epoch 纪元失败", e); + } + } + + @Override + public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException { + String redisKey = RedisKeyUtil.getPostScoreKey(); + BoundSetOperations operations = redisTemplate.boundSetOps(redisKey); + + if (operations.size() == 0) { + logger.info("[任务取消] 没有需要刷新的帖子"); + return ; + } + + logger.info("[任务开始] 正在刷新帖子分数: " + operations.size()); + while (operations.size() > 0) { + this.refresh((Integer) operations.pop()); + } + logger.info("[任务结束] 帖子分数刷新完毕"); + } + + /** + * 刷新帖子分数 + * @param postId + */ + private void refresh(int postId) { + DiscussPost post = discussPostSerivce.findDiscussPostById(postId); + + if (post == null) { + logger.error("该帖子不存在: id = " + postId); + return ; + } + + // 是否加精 + boolean wonderful = post.getStatus() == 1; + // 评论数量 + int commentCount = post.getCommentCount(); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_POST, postId); + + // 计算权重 + double w = (wonderful ? 75 : 0) + commentCount * 10 + likeCount * 2; + // 分数 = 权重 + 发帖距离天数 + double score = Math.log10(Math.max(w, 1)) + + (post.getCreateTime().getTime() - epoch.getTime()) / (1000 * 3600 * 24); + // 更新帖子分数 + discussPostSerivce.updateScore(postId, score); + // 同步搜索数据 + post.setScore(score); + elasticsearchService.saveDiscusspost(post); + + } +} diff --git a/src/main/java/com/greate/community/service/DataService.java b/src/main/java/com/greate/community/service/DataService.java new file mode 100644 index 00000000..77e76c68 --- /dev/null +++ b/src/main/java/com/greate/community/service/DataService.java @@ -0,0 +1,108 @@ +package com.greate.community.service; + +import com.greate.community.util.RedisKeyUtil; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.dao.DataAccessException; +import org.springframework.data.redis.connection.RedisConnection; +import org.springframework.data.redis.connection.RedisStringCommands; +import org.springframework.data.redis.core.RedisCallback; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Service; + +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Calendar; +import java.util.Date; +import java.util.List; + +/** + * 网站数据统计(UV / DAU) + */ +@Service +public class DataService { + + @Autowired + private RedisTemplate redisTemplate; + + private SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); + + /** + * 将指定的 IP 计入当天的 UV + * @param ip + */ + public void recordUV(String ip) { + String redisKey = RedisKeyUtil.getUVKey(df.format(new Date())); + redisTemplate.opsForHyperLogLog().add(redisKey, ip); + } + + /** + * 统计指定日期范围内的 UV + * @param start + * @param end + * @return + */ + public long calculateUV(Date start, Date end) { + if (start == null || end == null) { + throw new IllegalArgumentException("参数不能为空"); + } + + // 整理该日期范围内的 key + List keyList = new ArrayList<>(); + Calendar calendar = Calendar.getInstance(); + calendar.setTime(start); + while (!calendar.getTime().after(end)) { + String key = RedisKeyUtil.getUVKey(df.format(calendar.getTime())); + keyList.add(key); + calendar.add(Calendar.DATE, 1); // 加1天 + } + + // 合并这些天的 UV + String redisKey = RedisKeyUtil.getUVKey(df.format(start), df.format(end)); + redisTemplate.opsForHyperLogLog().union(redisKey, keyList.toArray()); + + // 返回统计结果 + return redisTemplate.opsForHyperLogLog().size(redisKey); + } + + /** + * 将指定的 IP 计入当天的 DAU + * @param userId + */ + public void recordDAU(int userId) { + String redisKey = RedisKeyUtil.getDAUKey(df.format(new Date())); + redisTemplate.opsForValue().setBit(redisKey, userId, true); + } + + /** + * 统计指定日期范围内的 DAU + * @param start + * @param end + * @return + */ + public long calculateDAU(Date start, Date end) { + if (start == null || end == null) { + throw new IllegalArgumentException("参数不能为空"); + } + + // 整理该日期范围内的 key + List keyList = new ArrayList<>(); + Calendar calendar = Calendar.getInstance(); + calendar.setTime(start); + while (!calendar.getTime().after(end)) { + String key = RedisKeyUtil.getDAUKey(df.format(calendar.getTime())); + keyList.add(key.getBytes()); + calendar.add(Calendar.DATE, 1); // 加1天 + } + + // 进行 or 运算 + return (long) redisTemplate.execute(new RedisCallback() { + @Override + public Object doInRedis(RedisConnection redisConnection) throws DataAccessException { + String redisKey = RedisKeyUtil.getDAUKey(df.format(start), df.format(end)); + redisConnection.bitOp(RedisStringCommands.BitOperation.OR, + redisKey.getBytes(), keyList.toArray(new byte[0][0])); + return redisConnection.bitCount(redisKey.getBytes()); + } + }); + } +} diff --git a/src/main/java/com/greate/community/service/DiscussPostSerivce.java b/src/main/java/com/greate/community/service/DiscussPostSerivce.java index 8a536824..a54e4a24 100644 --- a/src/main/java/com/greate/community/service/DiscussPostSerivce.java +++ b/src/main/java/com/greate/community/service/DiscussPostSerivce.java @@ -28,10 +28,11 @@ public class DiscussPostSerivce { * 当传入的 userId != 0 时,查找该指定用户的帖子 * @param offset 每页的起始索引 * @param limit 每页显示多少条数据 + * @param orderMode 排行模式(若传入 1, 则按照热度来排序) * @return */ - public List findDiscussPosts (int userId, int offset, int limit) { - return discussPostMapper.selectDiscussPosts(userId, offset, limit); + public List findDiscussPosts (int userId, int offset, int limit, int orderMode) { + return discussPostMapper.selectDiscussPosts(userId, offset, limit, orderMode); } /** @@ -83,4 +84,34 @@ public class DiscussPostSerivce { public int updateCommentCount(int id, int commentCount) { return discussPostMapper.updateCommentCount(id, commentCount); } + + /** + * 修改帖子类型:0-普通; 1-置顶; + * @param id + * @param type + * @return + */ + public int updateType(int id, int type) { + return discussPostMapper.updateType(id, type); + } + + /** + * 修改帖子状态:0-正常; 1-精华; 2-拉黑; + * @param id + * @param status + * @return + */ + public int updateStatus(int id, int status) { + return discussPostMapper.updateStatus(id, status); + } + + /** + * 修改帖子分数 + * @param id + * @param score + * @return + */ + public int updateScore(int id, double score) { + return discussPostMapper.updateScore(id, score); + } } diff --git a/src/main/java/com/greate/community/service/UserService.java b/src/main/java/com/greate/community/service/UserService.java index 355d5d03..c5c7a503 100644 --- a/src/main/java/com/greate/community/service/UserService.java +++ b/src/main/java/com/greate/community/service/UserService.java @@ -12,15 +12,13 @@ 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.security.core.GrantedAuthority; import org.springframework.stereotype.Service; import org.springframework.ui.Model; import org.thymeleaf.TemplateEngine; import org.thymeleaf.context.Context; -import java.util.Date; -import java.util.HashMap; -import java.util.Map; -import java.util.Random; +import java.util.*; import java.util.concurrent.TimeUnit; @@ -302,4 +300,29 @@ public class UserService implements CommunityConstant { redisTemplate.delete(redisKey); } + /** + * 获取某个用户的权限 + * @param userId + * @return + */ + public Collection getAuthorities(int userId) { + User user = this.findUserById(userId); + List list = new ArrayList<>(); + list.add(new GrantedAuthority() { + @Override + public String getAuthority() { + switch (user.getType()) { + case 1: + return AUTHORITY_ADMIN; + case 2: + return AUTHORITY_MODERATOR; + default: + return AUTHORITY_USER; + } + } + }); + return list; + } + + } diff --git a/src/main/java/com/greate/community/util/CommunityConstant.java b/src/main/java/com/greate/community/util/CommunityConstant.java index 0ec8a0e5..88956127 100644 --- a/src/main/java/com/greate/community/util/CommunityConstant.java +++ b/src/main/java/com/greate/community/util/CommunityConstant.java @@ -41,7 +41,19 @@ public interface CommunityConstant { // Kafka 主题:发帖 String TOPIC_PUBLISH = "publish"; + // Kafka 主题:删帖 + String TOPIC_DELETE = "delete"; + // 系统用户的 id int SYSTEM_USER_ID = 1; + // 权限:普通用户 + String AUTHORITY_USER = "user"; + + // 权限:管理员 + String AUTHORITY_ADMIN = "admin"; + + // 权限:版主 + String AUTHORITY_MODERATOR = "moderator"; + } diff --git a/src/main/java/com/greate/community/util/RedisKeyUtil.java b/src/main/java/com/greate/community/util/RedisKeyUtil.java index e3f42f16..a5fee381 100644 --- a/src/main/java/com/greate/community/util/RedisKeyUtil.java +++ b/src/main/java/com/greate/community/util/RedisKeyUtil.java @@ -13,6 +13,9 @@ public class RedisKeyUtil { private static final String PREFIX_KAPTCHA = "kaptcha"; // 验证码 private static final String PREFIX_TICKET = "ticket"; // 登录凭证 private static final String PREFIX_USER = "user"; // 登录凭证 + private static final String PREFIX_UV = "uv"; // 独立访客 + private static final String PREFIX_DAU = "dau"; // 日活跃用户 + private static final String PREFIX_POST = "post"; // 用于统计帖子分数 /** @@ -87,4 +90,49 @@ public class RedisKeyUtil { return PREFIX_USER + SPLIT + userId; } + /** + * 单日 UV + * @param date + * @return + */ + public static String getUVKey(String date) { + return PREFIX_UV + SPLIT + date; + } + + /** + * 区间 UV + * @param startDate + * @param endDate + * @return + */ + public static String getUVKey(String startDate, String endDate) { + return PREFIX_UV + SPLIT + startDate + SPLIT + endDate; + } + + /** + * 单日 DAU + * @param date + * @return + */ + public static String getDAUKey(String date) { + return PREFIX_DAU + SPLIT + date; + } + + /** + * 区间 DAU + * @param startDate + * @param endDate + * @return + */ + public static String getDAUKey(String startDate, String endDate) { + return PREFIX_DAU + SPLIT + startDate + SPLIT + endDate; + } + + /** + * 帖子分数 + * @return + */ + public static String getPostScoreKey() { + return PREFIX_POST + SPLIT + "score"; + } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index c6a97c48..1694b6a4 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -50,3 +50,13 @@ spring.kafka.consumer.auto-commit-interval = 3000 # ֶμ Elasticsearch װе elasticsearch.yml޸ spring.data.elasticsearch.cluster-name = community spring.data.elasticsearch.cluster-nodes = 127.0.0.1:9300 + +# Quartz +spring.quartz.job-store-type = jdbc +spring.quartz.scheduler-name = communityScheduler +spring.quartz.properties.org.quartz.scheduler.instanceId = AUTO +spring.quartz.properties.org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX +spring.quartz.properties.org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate +spring.quartz.properties.org.quartz.jobStore.isClustered = true +spring.quartz.properties.org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool +spring.quartz.properties.org.quartz.threadPool.threadCount = 5 \ No newline at end of file diff --git a/src/main/resources/mapper/discusspost-mapper.xml b/src/main/resources/mapper/discusspost-mapper.xml index d30642e3..05e2b977 100644 --- a/src/main/resources/mapper/discusspost-mapper.xml +++ b/src/main/resources/mapper/discusspost-mapper.xml @@ -21,7 +21,12 @@ and user_id = #{userId} - order by type desc, create_time desc + + order by type desc, create_time desc + + + order by type desc, score desc, create_time desc + limit #{offset}, #{limit} @@ -48,11 +53,31 @@ where id = #{id} - update discuss_post set comment_count = #{commentCount} where id = #{id} + + + update discuss_post + set type = #{type} + where id = #{id} + + + + + update discuss_post + set status = #{status} + where id = #{id} + + + + + update discuss_post + set score = #{score} + where id = #{id} + + \ No newline at end of file diff --git a/src/main/resources/static/js/discuss.js b/src/main/resources/static/js/discuss.js index 244c9438..8cc4c54f 100644 --- a/src/main/resources/static/js/discuss.js +++ b/src/main/resources/static/js/discuss.js @@ -1,3 +1,10 @@ +$(function(){ + $("#topBtn").click(setTop); + $("#wonderfulBtn").click(setWonderful); + $("#deleteBtn").click(setDelete); +}); + +// 点赞 function like(btn, entityType, entityId, entityUserId, postId) { $.post( CONTEXT_PATH + "/like", @@ -14,4 +21,58 @@ function like(btn, entityType, entityId, entityUserId, postId) { } ) +} + +// 置顶 +function setTop() { + $.post( + CONTEXT_PATH + "/discuss/top", + {"id":$("#postId").val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 置顶成功后,将置顶按钮设置为不可用 + $("#topBtn").attr("disabled", "disable") + } + else { + alert(data.msg); + } + } + ) +} + +// 加精 +function setWonderful() { + $.post( + CONTEXT_PATH + "/discuss/wonderful", + {"id":$("#postId").val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 加精成功后,将加精按钮设置为不可用 + $("#wonderfulBtn").attr("disabled", "disable") + } + else { + alert(data.msg); + } + } + ) +} + +// 删除 +function setDelete() { + $.post( + CONTEXT_PATH + "/discuss/delete", + {"id":$("#postId").val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 删除成功后,跳转到首页 + location.href = CONTEXT_PATH + "/index"; + } + 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 9f994bd0..acdf41d9 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -1,5 +1,5 @@ - + @@ -48,6 +48,7 @@ - +
网站 UV
-
- - - + + + +
  • 统计结果 - 0 +
活跃用户
-
- - - + + + +
  • 统计结果 - 0 +
-
+
@@ -155,9 +115,9 @@ - - - - + + + + diff --git a/src/main/resources/templates/site/discuss-detail.html b/src/main/resources/templates/site/discuss-detail.html index fced96cb..31dafb77 100644 --- a/src/main/resources/templates/site/discuss-detail.html +++ b/src/main/resources/templates/site/discuss-detail.html @@ -1,5 +1,5 @@ - + @@ -25,9 +25,13 @@
- - - + + + +
diff --git a/src/main/resources/templates/site/notice.html b/src/main/resources/templates/site/notice.html index b9dc5f6c..1b8b2ca9 100644 --- a/src/main/resources/templates/site/notice.html +++ b/src/main/resources/templates/site/notice.html @@ -37,7 +37,7 @@
    -
  • +
  • 通知图标
    @@ -61,7 +61,7 @@
  • -
  • +
  • 通知图标
    @@ -84,7 +84,7 @@
  • -
  • +
  • 通知图标
    diff --git a/src/test/java/com/greate/community/ElasticsearchTests.java b/src/test/java/com/greate/community/ElasticsearchTests.java index 22963c60..4336f1ce 100644 --- a/src/test/java/com/greate/community/ElasticsearchTests.java +++ b/src/test/java/com/greate/community/ElasticsearchTests.java @@ -62,15 +62,15 @@ public class ElasticsearchTests { */ @Test public void testInsetList() { - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(101, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(102, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(103, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(111, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(112, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(131, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(132, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(133, 0, 100)); - discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(134, 0, 100)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(101, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(102, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(103, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(111, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(112, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(131, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(132, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(133, 0, 100, 0)); + discussPostRepository.saveAll(discussPostMapper.selectDiscussPosts(134, 0, 100, 0)); } /** diff --git a/src/test/java/com/greate/community/QuartzTests.java b/src/test/java/com/greate/community/QuartzTests.java new file mode 100644 index 00000000..2d0a50d2 --- /dev/null +++ b/src/test/java/com/greate/community/QuartzTests.java @@ -0,0 +1,30 @@ +package com.greate.community; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.quartz.JobKey; +import org.quartz.Scheduler; +import org.quartz.SchedulerException; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@ContextConfiguration(classes = CommunityApplication.class) +@SpringBootTest +public class QuartzTests { + + @Autowired + private Scheduler scheduler; + + @Test + public void deleteJob(){ + try { + boolean result = scheduler.deleteJob(new JobKey("", "")); + System.out.println(result); + } catch (SchedulerException e) { + e.printStackTrace(); + } + } +} diff --git a/upload/5d92e80eecab4f1aa5cf5027bdf1a0f8.png b/upload/5d92e80eecab4f1aa5cf5027bdf1a0f8.png new file mode 100644 index 00000000..329d4994 Binary files /dev/null and b/upload/5d92e80eecab4f1aa5cf5027bdf1a0f8.png differ diff --git a/upload/affa0bb05970416592bfadc698389f7d.PNG b/upload/affa0bb05970416592bfadc698389f7d.PNG new file mode 100644 index 00000000..e79a0cb5 Binary files /dev/null and b/upload/affa0bb05970416592bfadc698389f7d.PNG differ diff --git a/upload/e75f7c8c438c40228fe0389d3780a226.jpg b/upload/e75f7c8c438c40228fe0389d3780a226.jpg new file mode 100644 index 00000000..2db116c3 Binary files /dev/null and b/upload/e75f7c8c438c40228fe0389d3780a226.jpg differ